[host] windows: implement KVMFR_FEATURE_SETCURSORPOS

This commit is contained in:
Geoffrey McRae
2021-08-05 22:35:22 +10:00
parent afbee641b1
commit 2856928b57
4 changed files with 41 additions and 3 deletions

View File

@@ -573,3 +573,13 @@ void os_showMessage(const char * caption, const char * msg)
{
MessageBoxA(NULL, msg, caption, MB_OK | MB_ICONINFORMATION);
}
bool os_hasSetCursorPos(void)
{
return true;
}
void os_setCursorPos(int x, int y)
{
SetCursorPos(x, y);
}