mirror of
https://github.com/wiiu-env/FunctionPatcherModule.git
synced 2024-11-06 01:55:12 +01:00
18 lines
382 B
C++
18 lines
382 B
C++
#pragma once
|
|
|
|
#include "PatchedFunctionData.h"
|
|
#include <coreinit/dynload.h>
|
|
#include <function_patcher/fpatching_defines.h>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool PatchFunction(std::shared_ptr<PatchedFunctionData> &patchedFunction);
|
|
bool RestoreFunction(std::shared_ptr<PatchedFunctionData> &patchedFunction);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |