AromaBaseModule/source/main.cpp

40 lines
1006 B
C++
Raw Normal View History

2022-08-25 12:58:35 +02:00
#include "applicationendshook/applicationendhook.h"
#include "dynload/dynload.h"
#include "globals.h"
#include "logger.h"
#include "patches/patches.h"
2022-08-25 12:58:35 +02:00
#include "sdrefcount/refcount.h"
#include "symbolnamepatcher/symbolname.h"
#include "version.h"
2022-08-25 12:58:35 +02:00
#include <wums.h>
WUMS_MODULE_EXPORT_NAME("homebrew_basemodule");
WUMS_MODULE_SKIP_INIT_FINI();
2022-09-19 22:25:55 +02:00
#define VERSION "v0.1.3"
2022-08-25 12:58:35 +02:00
WUMS_INITIALIZE(args) {
initLogging();
gModuleData = args.module_information;
if (gModuleData == nullptr) {
OSFatal("AromaBaseModule: Failed to get gModuleData pointer.");
}
if (gModuleData->version != MODULE_INFORMATION_VERSION) {
OSFatal("AromaBaseModule: The module information struct version does not match.");
}
initApplicationEndsHook();
initSDRefCount();
initSymbolNamePatcher();
initDynload();
initCommonPatches();
2022-08-25 12:58:35 +02:00
deinitLogging();
}
WUMS_APPLICATION_STARTS() {
OSReport("Running AromaBaseModule " VERSION VERSION_EXTRA "\n");
commonPatchesStart();
}