misc - Cleaning up warnings that occur on travis
[tpg/acess2.git] / KernelLand / Kernel / include / binary_ext.h
1 /*
2  * Acess 2
3  * binary_ext.h
4  * - Exported Symbols from the binary loader
5  */
6 #ifndef _BINARY_EXT_H
7 #define _BINARY_EXT_H
8
9 // === FUNCTIONS ===
10 extern void     *Binary_LoadFile(const char *Path);
11 extern void     *Binary_LoadKernel(const char *Path);
12 extern Uint     Binary_Relocate(void *Mem);
13 extern void     Binary_Unload(void *Base);
14 extern int      Binary_GetSymbol(const char *Name, Uint *Dest);
15 extern Uint     Binary_FindSymbol(void *Base, const char *Name, Uint *Val);
16
17 #endif

UCC git Repository :: git.ucc.asn.au