RPXLoadingModule/src/globals.h

18 lines
442 B
C
Raw Normal View History

2021-01-01 01:39:28 +01:00
#include <wums.h>
#include <coreinit/mutex.h>
typedef struct BundleInformation_t {
char shortname[64];
char longname[64];
char author[64];
} BundleInformation;
2021-01-01 01:39:28 +01:00
extern bool gIsMounted;
extern bool gTryToReplaceOnNextLaunch;
extern char gLoadedBundlePath[256];
extern char gSavePath[256];
extern char gWorkingDir[256];
extern uint32_t gCurrentHash;
extern bool gReplacedRPX;
extern BundleInformation gBundleInfo;