mirror of
https://github.com/libretro/RetroArch
synced 2025-01-27 21:35:25 +00:00
20db83cd93
move package folders to wii and ngc respectively
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
|