mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-10 12:41:47 +00:00
13 lines
No EOL
287 B
C
13 lines
No EOL
287 B
C
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
typedef struct _MenuItem {
|
|
char* text;
|
|
void (*callback)(struct _MenuItem* item);
|
|
void* userdata;
|
|
} MenuItem;
|
|
|
|
void menuPrint();
|
|
void menuSetCurrent(MenuItem* menuItems, void (*exitCallback)());
|
|
void menuUpdate(FsDeviceOperator* fsOperator); |