mirror of
https://github.com/wiiu-env/FunctionPatcherModule.git
synced 2024-11-13 05:25:12 +01:00
15 lines
291 B
C++
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);
|