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