2 * AcessNative Dymamic Linker
3 * - By John Hodge (thePowersGang)
6 * - Syscalls/Symbol definitions
13 // Syscall request (used by acess_*)
14 extern uint64_t _Syscall(int SyscallID, const char *ArgTypes, ...);
16 extern int native_open(const char *Path, int Flags);
17 extern void native_close(int FD);
18 extern size_t native_read(int FD, void *Dest, size_t Bytes);
19 extern size_t native_write(int FD, const void *Src, size_t Bytes);
20 extern int native_seek(int FD, int64_t Offset, int Dir);
21 extern uint64_t native_tell(int FD);
23 extern int native_execve(const char *filename, const char *const argv[], const char *const envp[]);
25 // Syscalls used by the linker
26 extern int acess_open(const char *Path, int Flags);
27 extern void acess_close(int FD);
28 extern size_t acess_read(int FD, void *Dest, size_t Bytes);
29 extern int acess_seek(int FD, int64_t Offset, int Dir);