about summary refs log tree commit diff stats
path: root/src/include/x64tls.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-06-18 10:52:28 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-06-18 10:52:28 +0200
commit59dd97cb72b1a4142ddd61eea36170de4ffff926 (patch)
treeabf8bfef31819995ce5631bd5d3d869fa1fb79b4 /src/include/x64tls.h
parenta0a98419f072f22479360670a35080ee9113d24f (diff)
downloadbox64-59dd97cb72b1a4142ddd61eea36170de4ffff926.tar.gz
box64-59dd97cb72b1a4142ddd61eea36170de4ffff926.zip
Added some support for 32bits code (doesn't seems enough for wow64 yet)
Diffstat (limited to 'src/include/x64tls.h')
-rwxr-xr-xsrc/include/x64tls.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/x64tls.h b/src/include/x64tls.h
index b99e3bc0..66f0d9eb 100755
--- a/src/include/x64tls.h
+++ b/src/include/x64tls.h
@@ -4,8 +4,7 @@
 typedef struct thread_area_s thread_area_t;
 typedef struct thread_area_32_s thread_area_32_t;
 
-uint32_t my_set_thread_area(thread_area_t* td);
-uint32_t my_set_thread_area_32(thread_area_32_t* td);
+uint32_t my_set_thread_area_32(x64emu_t* emu, thread_area_32_t* td);
 uint32_t my_modify_ldt(x64emu_t* emu, int op, thread_area_t* td, int size);
 
 tlsdatasize_t* getTLSData(box64context_t *context);