mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-27 00:00:07 -06:00
* attempt at keyboard input, via raw scancodes
* load config, etc * some things are nicer, too
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user