mirror of
https://github.com/wiiu-env/libfunctionpatcher.git
synced 2024-11-14 05:45:12 +01:00
15 lines
337 B
C
15 lines
337 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "fpatching_defines.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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
|