From fa874ffcbca0908493aea5e45503d52df998b099 Mon Sep 17 00:00:00 2001 From: André Zwing Date: Thu, 22 May 2025 21:19:16 +0200 Subject: [WOW64] Implement syscalls --- src/include/os.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/include') diff --git a/src/include/os.h b/src/include/os.h index 1257cc48..f141e99e 100644 --- a/src/include/os.h +++ b/src/include/os.h @@ -26,6 +26,8 @@ void* mmap(void* addr, size_t length, int prot, int flags, int fd, off_t offset) int munmap(void* addr, size_t length); int mprotect(void* addr, size_t len, int prot); +void x86Int(void* emu, int code); + void* WinMalloc(size_t size); void* WinRealloc(void* ptr, size_t size); void* WinCalloc(size_t nmemb, size_t size); -- cgit 1.4.1