homebrewfilter/source/elfloader.h

18 lines
199 B
C
Raw Permalink Normal View History

2012-04-07 20:04:32 +02:00
#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