mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-12 21:46:39 +00:00
12 lines
No EOL
217 B
C
12 lines
No EOL
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); |