Mess with the design a bit, prep for folder menu

This commit is contained in:
SuchMemeManySkill
2020-12-24 17:06:21 +01:00
parent 5190469e9c
commit b97bab3661
10 changed files with 73 additions and 21 deletions

View File

@@ -0,0 +1,37 @@
#pragma once
#include <utils/types.h>
enum {
LOC_SD = 0,
LOC_EMMC,
LOC_EMUMMC
};
enum {
CMODE_None = 0,
CMODE_Copy,
CMODE_Move
};
enum {
M_None = 0,
M_EMMC,
M_EMUMMC
};
typedef struct {
u32 FSBuffSize;
char *srcCopy;
union {
struct {
u8 minervaEnabled:1;
u8 lastExplorerLoc:2;
u8 explorerCopyMode:2;
u8 currentlyMounted:2;
};
u8 optionUnion;
};
// Add keys here
} TConf_t;
extern TConf_t TConf;