AppleWin/source/linux/windows/winuser.cpp
Andrea Odetti 86ad2130a9 Make sure configuration is saved when a snapshot is loaded.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-07-06 19:29:18 +01:00

36 lines
486 B
C++

#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;
}
HWND WINAPI GetDlgItem(HWND,INT)
{
return nullptr;
}
LRESULT WINAPI SendMessage(HWND,UINT,WPARAM,LPARAM)
{
return 0;
}