mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-10 06:02:01 +00:00
17 lines
No EOL
598 B
C
17 lines
No EOL
598 B
C
#pragma once
|
|
#include "../../gfx/gfx.h"
|
|
#include "../../utils/types.h"
|
|
|
|
#define SWAPCOLOR(color) gfx_printf("%k", color)
|
|
#define SWAPBGCOLOR(color) gfx_printf("%K", color)
|
|
#define RESETCOLOR gfx_printf("%k%K", COLOR_WHITE, COLOR_DEFAULT)
|
|
|
|
void gfx_clearscreen();
|
|
u32 gfx_message(u32 color, const char* message, ...);
|
|
u32 gfx_errDisplay(char *src_func, int err, int loc);
|
|
int gfx_makewaitmenu(char *hiddenmessage, int timer);
|
|
void gfx_printlength(int size, char *toprint);
|
|
void gfx_printandclear(char *in, int length, int endX);
|
|
void gfx_printfilesize(int size, char *type);
|
|
|
|
extern int printerrors; |