homebrewfilter/source/elfloader.h
Christopher Roy Bratusek 6ac4d081a6 import rev0 (other stuff)
2012-04-07 20:04:32 +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