2019-04-28 15:23:25 -05:00
|
|
|
// 28 april 2019
|
|
|
|
|
2019-04-28 15:26:00 -05:00
|
|
|
extern HRESULT WINAPI uiprivHrRegisterClassW(const WNDCLASSW *wc);
|
|
|
|
extern HRESULT WINAPI uiprivHrCreateWindowExW(DWORD exStyle, LPCWSTR className, LPCWSTR windowName, DWORD style, int x, int y, int width, int height, HWND parent, HMENU menu, HINSTANCE hInstance, LPVOID lpParam, HWND *hwnd);
|
2019-04-29 22:12:39 -05:00
|
|
|
// Note: if no error, returns S_FALSE on WM_QUIT, and S_OK otherwise.
|
|
|
|
extern HRESULT WINAPI uiprivHrGetMessageW(LPMSG msg, HWND hwnd, UINT filterMin, UINT filterMax);
|
2019-04-28 15:26:00 -05:00
|
|
|
extern HRESULT WINAPI uiprivHrPostMessageW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
extern HRESULT WINAPI uiprivHrLoadIconW(HINSTANCE hInstance, LPCWSTR name, HICON *hIcon);
|
|
|
|
extern HRESULT WINAPI uiprivHrLoadCursorW(HINSTANCE hInstance, LPCWSTR name, HCURSOR *hCursor);
|