mirror of
https://github.com/wiiu-env/PayloadFromRPX.git
synced 2024-11-05 14:25:07 +01:00
15 lines
279 B
C++
15 lines
279 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#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
|