AppleWin/source/linux/windows/winuser.cpp
Andrea Odetti 50599e9535 Debugger: compile Debug.cpp, Debugger_Help.cpp, Commands, and MemoryTextFile.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-05-06 15:22:14 +01:00

36 lines
510 B
C++

#include "linux/windows/winuser.h"
HCURSOR LoadCursor(HINSTANCE hInstance, LPCSTR lpCursorName)
{
return nullptr;
}
HCURSOR SetCursor(HCURSOR hCursor)
{
return nullptr;
}
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;
}
void WINAPI PostQuitMessage(INT status)
{
throw status;
}