2020-06-06 22:15:47 +02:00
|
|
|
#include <wums.h>
|
|
|
|
#include <whb/log_udp.h>
|
|
|
|
#include "function_patcher.h"
|
|
|
|
WUMS_MODULE_EXPORT_NAME("homebrew_functionpatcher");
|
2020-12-28 14:42:19 +01:00
|
|
|
WUMS_MODULE_SKIP_ENTRYPOINT();
|
2021-02-19 17:10:17 +01:00
|
|
|
WUMS_MODULE_SKIP_WUT_INIT();
|
2020-12-28 14:42:19 +01:00
|
|
|
WUMS_MODULE_INIT_BEFORE_RELOCATION_DONE_HOOK();
|
2020-06-06 22:15:47 +02:00
|
|
|
|
|
|
|
WUMS_APPLICATION_STARTS() {
|
2021-04-17 12:13:22 +02:00
|
|
|
// Currently we have no logging because we're skipping the wut init/fini calls.
|
|
|
|
// 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);
|
2020-12-28 14:45:28 +01:00
|
|
|
WUMS_EXPORT_FUNCTION(FunctionPatcherRestoreDynamicFunctions);
|