mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
17 lines
189 B
C
17 lines
189 B
C
|
#ifndef _ELFLOADER_H_
|
||
|
#define _ELFLOADER_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
s32 valid_elf_image (void *addr);
|
||
|
u32 load_elf_image (void *addr);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|