mirror of
https://github.com/wiiu-env/RPXLoadingModule.git
synced 2024-11-17 07:29:17 +01:00
9 lines
453 B
C++
9 lines
453 B
C++
|
#include "globals.h"
|
||
|
|
||
|
bool gIsMounted __attribute__((section(".data"))) = false;
|
||
|
uint32_t gCurrentHash __attribute__((section(".data"))) = 0;
|
||
|
bool gTryToReplaceOnNextLaunch __attribute__((section(".data"))) = false;
|
||
|
char gLoadedBundlePath[256] __attribute__((section(".data")));
|
||
|
char gSavePath[256] __attribute__((section(".data")));
|
||
|
char gWorkingDir[256] __attribute__((section(".data")));
|
||
|
char gTempPath[256] __attribute__((section(".data")));
|