mirror of
https://github.com/Brawl345/customizemii.git
synced 2024-11-15 04:45:09 +01:00
858dad3de9
CustomizeMii 1.2 Mono ForwardMii 1.0 libOGC for the built in Forwarder Creation
19 lines
233 B
C
19 lines
233 B
C
#ifndef _ELFLOADER_H_
|
|
#define _ELFLOADER_H_
|
|
|
|
#include <wiiuse/wpad.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
s32 valid_elf_image (void *addr);
|
|
u32 load_elf_image (void *addr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|