2020-06-06 22:20:11 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "fpatching_defines.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-12-28 14:45:41 +01:00
|
|
|
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);
|
2020-12-28 14:45:41 +01:00
|
|
|
|
2020-06-12 21:11:43 +02:00
|
|
|
extern void FunctionPatcherRestoreFunctions(function_replacement_data_t *replacements, uint32_t size);
|
2020-12-28 14:45:41 +01:00
|
|
|
|
2020-06-06 22:20:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|