mirror of
https://github.com/libretro/xmil-libretro.git
synced 2024-11-27 02:10:21 +00:00
20 lines
218 B
C
20 lines
218 B
C
|
|
||
|
enum {
|
||
|
MENUTYPE_NORMAL = 0
|
||
|
};
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
BRESULT sysmenu_create(void);
|
||
|
void sysmenu_destroy(void);
|
||
|
|
||
|
BRESULT sysmenu_menuopen(UINT menutype, int x, int y);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|