mirror of
https://github.com/wiiu-env/RPXLoadingModule.git
synced 2024-12-01 06:04:19 +01:00
17 lines
273 B
C
17 lines
273 B
C
|
#pragma once
|
||
|
|
||
|
#include <function_patcher/function_patching.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern function_replacement_data_t fs_file_function_replacements[];
|
||
|
extern uint32_t fs_file_function_replacements_size;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|