uianimation: Use --prefer_native instead of DLL_WINE_PREATTACH.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-03-02 10:56:07 +01:00
parent 3fce5dc492
commit 64af8131f0
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,7 @@
MODULE = uianimation.dll MODULE = uianimation.dll
IMPORTS = uuid IMPORTS = uuid
EXTRADLLFLAGS = -mno-cygwin EXTRADLLFLAGS = -mno-cygwin -Wb,--prefer-native
C_SRCS = \ C_SRCS = \
main.c main.c

View File

@ -44,8 +44,6 @@ BOOL WINAPI DllMain( HINSTANCE dll, DWORD reason, LPVOID reserved )
switch (reason) switch (reason)
{ {
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
case DLL_PROCESS_ATTACH: case DLL_PROCESS_ATTACH:
hinstance = dll; hinstance = dll;
DisableThreadLibraryCalls( dll ); DisableThreadLibraryCalls( dll );