AppleWin/source/linux/windows/winuser.cpp

27 lines
350 B
C++
Raw Normal View History

#include "linux/windows/winuser.h"
HCURSOR LoadCursor(HINSTANCE hInstance, LPCSTR lpCursorName)
{
return nullptr;
}
HCURSOR SetCursor(HCURSOR hCursor)
{
return nullptr;
}
HWND GetDesktopWindow()
{
return NULL;
}
UINT_PTR SetTimer(HWND,UINT_PTR,UINT,TIMERPROC)
{
return NULL;
}
BOOL KillTimer(HWND hWnd, UINT uIDEvent)
{
return TRUE;
}