* attempt at keyboard input, via raw scancodes

* load config, etc
* some things are nicer, too
This commit is contained in:
StapleButter
2017-09-17 23:25:32 +02:00
parent 66106a8829
commit 8e7d46e717
11 changed files with 80 additions and 10 deletions

View File

@ -57,6 +57,11 @@ void uiControlDisable(uiControl *c)
(*(c->Disable))(c);
}
void uiControlSetFocus(uiControl *c)
{
(*(c->SetFocus))(c);
}
#define uiControlSignature 0x7569436F
uiControl *uiAllocControl(size_t size, uint32_t OSsig, uint32_t typesig, const char *typenamestr)