about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-05-22 23:02:12 +0200
committerGitHub <noreply@github.com>2025-05-22 23:02:12 +0200
commit18a02fafb1a14d70affb16cee2cb59c1c1e7849e (patch)
treec2233c1e8fffb0ccede744c2fe8b716a10ee6c6e /src/include
parent5916869329fc3bf00885be33be98f9cfbe6073de (diff)
parent06d4fc79ec22cdc93ca4577bd01fc496c3eb6c0e (diff)
downloadbox64-18a02fafb1a14d70affb16cee2cb59c1c1e7849e.tar.gz
box64-18a02fafb1a14d70affb16cee2cb59c1c1e7849e.zip
Merge pull request #2660 from AndreRH/wowbox64
wow64 part4 (dont squash)
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);