diff options
Diffstat (limited to 'src/include/x64tls.h')
| -rw-r--r-- | src/include/x64tls.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/x64tls.h b/src/include/x64tls.h index 9ca97efb..66f0d9eb 100644 --- a/src/include/x64tls.h +++ b/src/include/x64tls.h @@ -2,8 +2,9 @@ #define __X64_TLS_H__ 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(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); |