homebrewfilter/source/BootHomebrew/elfloader.h
2011-09-25 19:47:02 +02:00

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