2019-11-21 15:02:45 +00:00
|
|
|
#pragma once
|
2019-11-21 19:54:18 +00:00
|
|
|
#include "te.h"
|
2019-12-01 00:49:36 +00:00
|
|
|
#include "fs.h"
|
2019-11-21 15:02:45 +00:00
|
|
|
|
2019-12-16 22:31:29 +00:00
|
|
|
#define SWAPCOLOR(color) gfx_printf("%k", color)
|
|
|
|
#define RESETCOLOR gfx_printf("%k%K", COLOR_WHITE, COLOR_DEFAULT)
|
|
|
|
|
2019-11-21 15:02:45 +00:00
|
|
|
int makemenu(menu_item menu[], int menuamount);
|
2020-01-04 19:18:26 +00:00
|
|
|
int message(u32 color, const char* message, ...);
|
2019-12-01 00:49:36 +00:00
|
|
|
void clearscreen();
|
2019-12-07 20:49:58 +00:00
|
|
|
int makefilemenu(fs_entry *files, int amount, char *path);
|
2019-12-11 12:18:57 +00:00
|
|
|
void printbytes(u8 print[], u32 size, u32 offset);
|
2020-01-04 19:18:26 +00:00
|
|
|
int makewaitmenu(char *initialmessage, char *hiddenmessage, int timer);
|
|
|
|
void gfx_print_length(int size, char *toprint);
|