diff --git a/include/function_patcher/function_patching.h b/include/function_patcher/function_patching.h index ef4d91c..a5af1d6 100644 --- a/include/function_patcher/function_patching.h +++ b/include/function_patcher/function_patching.h @@ -7,8 +7,12 @@ extern "C" { #endif +extern void FunctionPatcherRestoreDynamicFunctions(function_replacement_data_t *replacements, uint32_t size); + extern void FunctionPatcherPatchFunction(function_replacement_data_t *replacements, uint32_t size); + extern void FunctionPatcherRestoreFunctions(function_replacement_data_t *replacements, uint32_t size); + #ifdef __cplusplus } #endif diff --git a/source/patching.def b/source/patching.def index 0853535..e363147 100644 --- a/source/patching.def +++ b/source/patching.def @@ -2,4 +2,5 @@ :TEXT FunctionPatcherPatchFunction -FunctionPatcherRestoreFunctions \ No newline at end of file +FunctionPatcherRestoreFunctions +FunctionPatcherRestoreDynamicFunctions \ No newline at end of file