1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-21 06:23:34 +01:00
TegraExplorer/source/tegraexplorer/common/strings.c

37 lines
552 B
C
Raw Normal View History

2020-03-17 23:41:09 +00:00
#include "common.h"
const char *gfx_file_size_names[] = {
"B ",
"KB",
"MB",
"GB"
};
const char *menu_sd_states[] = {
"\nUnmount SD",
"\nMount SD"
};
const char *emmc_fs_entries[] = {
"SYSTEM",
"USER",
"SAFE"
2020-03-18 11:18:39 +00:00
};
const char *utils_err_codes[] = {
"OK",
"I/O ERROR",
"DRIVE LOOKUP FAILED",
"NOT READY",
"NO FILE",
"NO PATH",
"PATH INVALID",
"ACCESS DENIED",
"ACCESS DENIED",
"INVALID PTR",
"PROTECTED",
"INVALID DRIVE",
"NO MEM",
"NO FAT",
"MKFS ABORT"
2020-03-17 23:41:09 +00:00
};