libfunctionpatcher/include/function_patcher/function_patching.h

19 lines
450 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 void FunctionPatcherRestoreDynamicFunctions(function_replacement_data_t *replacements, uint32_t size);
2020-06-06 22:20:11 +02:00
extern void FunctionPatcherPatchFunction(function_replacement_data_t *replacements, uint32_t size);
extern void FunctionPatcherRestoreFunctions(function_replacement_data_t *replacements, uint32_t size);
2020-06-06 22:20:11 +02:00
#ifdef __cplusplus
}
#endif