1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/dll/dxwcore.hpp

25 lines
325 B
C++
Raw Normal View History

#include <windows.h>
#define CLIP_TOLERANCE 4
class dxwCore
{
// Construction/destruction
public:
dxwCore();
virtual ~dxwCore();
// Operations
public:
void SethWnd(HWND);
public:
POINT FixCursorPos(POINT);
// Implementation
protected:
HWND hWnd;
int dwScreenWidth;
int dwScreenHeight;
BOOL IsFullScreen;
};