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