#include <winuser.h>
#undef CreateWindowA
#undef CreateWindowW
#undef RegisterClassExA
#undef RegisterClassExW
__OVERRIDE
WINUSERAPI
HWND
WINAPI
CreateWindowA (
_In_opt_ LPCSTR lpClassName,
_In_opt_ LPCSTR lpWindowName,
_In_ DWORD dwStyle,
_In_ int X, _In_ int Y, _In_ int nWidth,
_In_ int nHeight,
_In_opt_ HWND hWndParent,
_In_opt_ HMENU hMenu,
_In_opt_ HINSTANCE hInstance,
_In_opt_ LPVOID lpParam
);
__OVERRIDE
WINUSERAPI
HWND
WINAPI
CreateWindowW (
_In_opt_ LPCWSTR lpClassName,
_In_opt_ LPCWSTR lpWindowName,
_In_ DWORD dwStyle,
_In_ int X, _In_ int Y, _In_ int nWidth,
_In_ int nHeight,
_In_opt_ HWND hWndParent,
_In_opt_ HMENU hMenu,
_In_opt_ HINSTANCE hInstance,
_In_opt_ LPVOID lpParam
);
__OVERRIDE
WINUSERAPI
ATOM
WINAPI
RegisterClassExA (
_In_ CONST WNDCLASSEXA* lpWndClass
);
__OVERRIDE
WINUSERAPI
ATOM
WINAPI
RegisterClassExW (
_In_ CONST WNDCLASSEXW* lpWndClass
);