mirror of
https://github.com/wiiu-env/libfunctionpatcher.git
synced 2024-11-05 09:35:09 +01:00
17 lines
333 B
C
17 lines
333 B
C
#pragma once
|
|
|
|
#include "fpatching_defines.h"
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern bool FunctionPatcherPatchFunction(function_replacement_data_t *function_data, PatchedFunctionHandle *outHandle);
|
|
|
|
extern bool FunctionPatcherRestoreFunction(PatchedFunctionHandle outHandle);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|