mirror of
https://github.com/wiiu-env/PayloadFromRPX.git
synced 2024-11-14 02:05:06 +01:00
15 lines
280 B
C
15 lines
280 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int32_t LoadFileToMem(const char *relativefilepath, char **fileOut, uint32_t *sizeOut);
|
|
uint32_t load_loader_elf_from_sd(unsigned char *baseAddress, const char *relativePath);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|