mirror of
https://github.com/wiiu-env/ContentRedirectionModule.git
synced 2024-11-16 16:39:24 +01:00
19 lines
387 B
C
19 lines
387 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;
|
||
|
|
||
|
extern function_replacement_data_t test_function_replacements[];
|
||
|
extern uint32_t test_function_replacements_size;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|