[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

@@ -86,3 +86,12 @@ void os_showMessage(const char * caption, const char * msg)
{
DEBUG_INFO("%s: %s", caption, msg);
}
bool os_hasSetCursorPos(void)
{
return false;
}
void os_setCursorPos(int x, int y)
{
}