FunctionPatcherModule/source/main.cpp
2020-06-06 22:15:47 +02:00

15 lines
291 B
C++

#include <wums.h>
#include <whb/log_udp.h>
#include "function_patcher.h"
WUMS_MODULE_EXPORT_NAME("homebrew_functionpatcher");
WUMS_INITIALIZE(){
WHBLogUdpInit();
}
WUMS_APPLICATION_STARTS() {
FunctionPatcherResetLibHandles();
}
WUMS_EXPORT_FUNCTION(FunctionPatcherPatchFunction);