Initial community commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include <windows.h>
|
||||
|
||||
class WADrawDC
|
||||
{
|
||||
public:
|
||||
WADrawDC(HWND _hwnd);
|
||||
WADrawDC(HDC _hdc, HWND _hwnd);
|
||||
~WADrawDC();
|
||||
operator HDC();
|
||||
private:
|
||||
HDC hdc;
|
||||
HWND hwnd;
|
||||
};
|
||||
Reference in New Issue
Block a user