mirror of
https://github.com/wiiu-env/RPXLoadingModule.git
synced 2024-11-28 12:54:14 +01:00
24 lines
465 B
C++
24 lines
465 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <function_patcher/function_patching.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct __attribute((packed)) {
|
|
uint32_t command;
|
|
uint32_t target;
|
|
uint32_t filesize;
|
|
uint32_t fileoffset;
|
|
char path[256];
|
|
} LOAD_REQUEST;
|
|
|
|
extern function_replacement_data_t rpx_utils_function_replacements[];
|
|
extern uint32_t rpx_utils_function_replacements_size;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|