about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorAndré Zwing <nerv@dawncrow.de>2025-05-22 21:19:16 +0200
committerAndré Zwing <nerv@dawncrow.de>2025-05-22 21:27:02 +0200
commitfa874ffcbca0908493aea5e45503d52df998b099 (patch)
tree92153d2d823c013b6c66584786fac0dd6da4b85a /src/include
parentb729e3e37b37b5c14ab556d674aa71c24edcdffe (diff)
downloadbox64-fa874ffcbca0908493aea5e45503d52df998b099.tar.gz
box64-fa874ffcbca0908493aea5e45503d52df998b099.zip
[WOW64] Implement syscalls
Diffstat (limited to 'src/include')
-rw-r--r--src/include/os.h2
1 files changed, 2 insertions, 0 deletions
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);