mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-09 20:24:14 +00:00
[host] windows: implement KVMFR_FEATURE_SETCURSORPOS
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user