2020-06-14 09:18:18 +01:00
|
|
|
#include "linux/windows/winuser.h"
|
|
|
|
|
|
|
|
HCURSOR LoadCursor(HINSTANCE hInstance, LPCSTR lpCursorName)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HCURSOR SetCursor(HCURSOR hCursor)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-06-24 08:34:01 +01:00
|
|
|
|
2020-07-01 18:27:40 +01:00
|
|
|
UINT_PTR SetTimer(HWND,UINT_PTR,UINT,TIMERPROC)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL KillTimer(HWND hWnd, UINT uIDEvent)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
2020-07-06 19:29:18 +01:00
|
|
|
|
|
|
|
HWND WINAPI GetDlgItem(HWND,INT)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
LRESULT WINAPI SendMessage(HWND,UINT,WPARAM,LPARAM)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2021-05-06 15:22:14 +01:00
|
|
|
|
|
|
|
void WINAPI PostQuitMessage(INT status)
|
|
|
|
{
|
|
|
|
throw status;
|
|
|
|
}
|