FunctionPatcherModule/source/main.cpp

17 lines
466 B
C++
Raw Normal View History

2020-06-06 22:15:47 +02:00
#include <wums.h>
#include <whb/log_udp.h>
#include "function_patcher.h"
2021-09-24 14:49:20 +02:00
2020-06-06 22:15:47 +02:00
WUMS_MODULE_EXPORT_NAME("homebrew_functionpatcher");
WUMS_MODULE_SKIP_ENTRYPOINT();
WUMS_MODULE_INIT_BEFORE_RELOCATION_DONE_HOOK();
2020-06-06 22:15:47 +02:00
WUMS_APPLICATION_STARTS() {
WHBLogUdpInit();
2020-06-06 22:15:47 +02:00
FunctionPatcherResetLibHandles();
}
WUMS_EXPORT_FUNCTION(FunctionPatcherPatchFunction);
2020-06-12 21:10:59 +02:00
WUMS_EXPORT_FUNCTION(FunctionPatcherRestoreFunctions);
WUMS_EXPORT_FUNCTION(FunctionPatcherRestoreDynamicFunctions);