[host] app: implement stubs for platform specific guest information

This commit is contained in:
Geoffrey McRae
2022-01-05 21:04:57 +11:00
parent 7ccd202d36
commit fdb38a227e
5 changed files with 58 additions and 4 deletions

View File

@@ -95,3 +95,20 @@ bool os_hasSetCursorPos(void)
void os_setCursorPos(int x, int y)
{
}
KVMFROS os_getKVMFRType(void)
{
return KVMFR_OS_LINUX;
}
const char * os_getOSName(void)
{
//TODO
return NULL;
}
const uint8_t * os_getUUID(void)
{
//TODO
return NULL;
}