Module: wine Branch: master Commit: 6b90aea87afcec0cd4005cd15dfb83233f82045e URL: https://gitlab.winehq.org/wine/wine/-/commit/6b90aea87afcec0cd4005cd15dfb832...
Author: Alexandre Julliard julliard@winehq.org Date: Thu May 11 11:19:49 2023 +0200
win32u: Don't export wow64 Unix call functions.
They are not used, and can interfere with other libraries that link directly to win32u.so.
---
dlls/win32u/syscall.c | 18 ------------------ 1 file changed, 18 deletions(-)
diff --git a/dlls/win32u/syscall.c b/dlls/win32u/syscall.c index a550d32bce9..80c108ab41b 100644 --- a/dlls/win32u/syscall.c +++ b/dlls/win32u/syscall.c @@ -339,21 +339,3 @@ unixlib_entry_t __wine_unix_call_funcs[] = init, callbacks_init, }; - -#ifdef _WIN64 - -WINE_DEFAULT_DEBUG_CHANNEL(win32u); - -static NTSTATUS wow64_init( void *args ) -{ - FIXME( "\n" ); - return STATUS_NOT_SUPPORTED; -} - -const unixlib_entry_t __wine_unix_call_wow64_funcs[] = -{ - init, - wow64_init, -}; - -#endif /* _WIN64 */