Add FunctionPatcherRestoreDynamicFunctions

This commit is contained in:
Maschell 2020-12-28 14:45:41 +01:00
parent 5d8e189605
commit 1926e00ffb
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -2,4 +2,5 @@
:TEXT
FunctionPatcherPatchFunction
FunctionPatcherRestoreFunctions
FunctionPatcherRestoreFunctions
FunctionPatcherRestoreDynamicFunctions