mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 13:11:54 +00:00
13 lines
No EOL
450 B
C
13 lines
No EOL
450 B
C
#pragma once
|
|
#include "te.h"
|
|
#include "fs.h"
|
|
|
|
#define SWAPCOLOR(color) gfx_printf("%k", color)
|
|
#define RESETCOLOR gfx_printf("%k%K", COLOR_WHITE, COLOR_DEFAULT)
|
|
|
|
int makemenu(menu_item menu[], int menuamount);
|
|
int message(char* message, u32 color);
|
|
void clearscreen();
|
|
int makefilemenu(fs_entry *files, int amount, char *path);
|
|
void printbytes(u8 print[], u32 size, u32 offset);
|
|
int makewaitmenu(char *initialmessage, char *hiddenmessage, int timer); |