mirror of
https://github.com/wiiu-env/PayloadFromRPX.git
synced 2024-11-16 02:59:16 +01:00
19 lines
346 B
C
19 lines
346 B
C
#ifndef ELF_LOADING_H
|
|
#define ELF_LOADING_H
|
|
|
|
#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
|
|
|
|
#endif /* ELF_LOADING_H */
|
|
|