mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-19 15:25:52 +01:00
13 lines
196 B
C++
13 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
|