1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/dll/dxwcore.hpp
gho tik caa3532608 v2_01_100
Former-commit-id: e800c7f1c024ce2745ac1597b470b25d3ec814df
2017-03-06 10:20:23 -05:00

25 lines
325 B
C++

#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;
};