mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
18 lines
199 B
C
18 lines
199 B
C
#ifndef _ELF_H_
|
|
#define _ELF_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
s32 valid_elf_image (void *addr);
|
|
u32 load_elf_image (void *addr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|