mirror of
https://github.com/FIX94/hbc.git
synced 2024-11-01 16:45:09 +01:00
14 lines
275 B
C
14 lines
275 B
C
#ifndef _LOADER_RELOC_H_
|
|
#define _LOADER_RELOC_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
typedef void (*entry_point) (void);
|
|
|
|
bool loader_reloc (entry_point *ep, const u8 *addr, u32 size, const char *args,
|
|
u16 arg_len, bool check_overlap);
|
|
void loader_exec (entry_point ep);
|
|
|
|
#endif
|
|
|