diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-10-15 20:52:16 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-10-15 20:52:16 +0200 |
| commit | d0045b158b30434c2077693d970e2167a1089e84 (patch) | |
| tree | b2951427e4870055cf79f6388d9755a227e843f7 /src/os/os_wine.c | |
| parent | 1d4a9e8863d7e32f0bb1472674a94f05df1409b5 (diff) | |
| download | box64-d0045b158b30434c2077693d970e2167a1089e84.tar.gz box64-d0045b158b30434c2077693d970e2167a1089e84.zip | |
Some Segments/Selector handling refactoring , removing some pthread_getspecific use
Diffstat (limited to 'src/os/os_wine.c')
| -rw-r--r-- | src/os/os_wine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/os_wine.c b/src/os/os_wine.c index edae6e07..4693295d 100644 --- a/src/os/os_wine.c +++ b/src/os/os_wine.c @@ -30,12 +30,12 @@ int IsBridgeSignature(char s, char c) return FALSE; } -void* GetSeg43Base() +void* GetSeg43Base(void* emu) { return NULL; } -void* GetSegmentBase(uint32_t desc) +void* GetSegmentBase(void* emu, uint32_t desc) { printf_log(LOG_NONE, "GetSegmentBase does not apply to Wine dlls\n"); return NULL; |