about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-08-31 15:59:48 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-08-31 15:59:48 +0200
commit497f6297615b74739f79882fdd401a09cd9e4391 (patch)
tree8f56b021bb76bff2738bb63018f1414a8bbbafd7 /src/emu
parent6f086014799148ae4e5c9375558118a19a916df3 (diff)
downloadbox64-497f6297615b74739f79882fdd401a09cd9e4391.tar.gz
box64-497f6297615b74739f79882fdd401a09cd9e4391.zip
[BOX32] Another batch of 32bits wrapped function, for libvstdlib_s.so this time
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64emu_private.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/x64emu_private.h b/src/emu/x64emu_private.h
index bf59137d..903f2c0c 100644
--- a/src/emu/x64emu_private.h
+++ b/src/emu/x64emu_private.h
@@ -141,6 +141,9 @@ typedef struct x64emu_s {
     int         libctolower[384];   // copy from __ctype_b_tolower address might be too high
     const int** ref_tolower;
     const int*  tolower;
+    int         libctoupper[384];   // copy from __ctype_b_toupper address might be too high
+    const int** ref_toupper;
+    const int*  toupper;
     #endif
 } x64emu_t;