mirror of
https://github.com/DxWnd/DxWnd.reloaded
synced 2024-12-30 09:25:35 +01:00
25 lines
325 B
C++
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;
|
|
};
|