libfunctionpatcher/include/function_patcher/function_patching.h

17 lines
333 B
C
Raw Normal View History

2020-06-06 22:20:11 +02:00
#pragma once
#include "fpatching_defines.h"
2022-02-11 19:57:54 +01:00
#include <stdint.h>
2020-06-06 22:20:11 +02:00
#ifdef __cplusplus
extern "C" {
#endif
extern bool FunctionPatcherPatchFunction(function_replacement_data_t *function_data, PatchedFunctionHandle *outHandle);
extern bool FunctionPatcherRestoreFunction(PatchedFunctionHandle outHandle);
2020-06-06 22:20:11 +02:00
#ifdef __cplusplus
}
#endif