mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 04:42:06 -05:00
12 lines
196 B
C++
12 lines
196 B
C++
#ifndef _FAKEDRAG_H
|
|
#define _FAKEDRAG_H
|
|
|
|
#include <api/wnd/basewnd.h>
|
|
|
|
class FakeDragWnd : public BaseWnd {
|
|
public:
|
|
FakeDragWnd() { dragging = 1; }
|
|
~FakeDragWnd() { dragging = 0; }
|
|
};
|
|
|
|
#endif
|