RPXLoadingModule/src/globals.cpp
Maschell 160d5b4f3e Patch home menu process to display the correct icon + name when a .wuhb is loaded
Export functions for accessing files inside a bundle
2021-01-17 18:08:07 +01:00

11 lines
529 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")));
bool gReplacedRPX __attribute__((section(".data"))) = false;
BundleInformation gBundleInfo __attribute__((section(".data")));