Module: wine Branch: master Commit: 3d7261eb9c0a8bd66d8a0385d5dd0b928347f73c URL: https://source.winehq.org/git/wine.git/?a=commit;h=3d7261eb9c0a8bd66d8a0385d...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Feb 18 11:54:02 2021 +0100
strmdll: Use --prefer-native instead of DLL_WINE_PREATTACH.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/strmdll/Makefile.in | 5 +---- dlls/strmdll/main.c | 40 ---------------------------------------- 2 files changed, 1 insertion(+), 44 deletions(-)
diff --git a/dlls/strmdll/Makefile.in b/dlls/strmdll/Makefile.in index f710169b6ab..e224b6f4a51 100644 --- a/dlls/strmdll/Makefile.in +++ b/dlls/strmdll/Makefile.in @@ -1,8 +1,5 @@ MODULE = strmdll.dll
-EXTRADLLFLAGS = -mno-cygwin - -C_SRCS = \ - main.c +EXTRADLLFLAGS = -Wb,--prefer-native
RC_SRCS = version.rc diff --git a/dlls/strmdll/main.c b/dlls/strmdll/main.c deleted file mode 100644 index 1278fc2b781..00000000000 --- a/dlls/strmdll/main.c +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright 2018 Stefan Leichter - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -#include <stdarg.h> - -#include "windef.h" -#include "winbase.h" -#include "wine/debug.h" - -WINE_DEFAULT_DEBUG_CHANNEL(strmdll); - -BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD reason, LPVOID lpv) -{ - TRACE("(%p, %d, %p)\n", hInstDLL, reason, lpv); - - switch (reason) - { - case DLL_WINE_PREATTACH: - return FALSE; /* prefer native version */ - case DLL_PROCESS_ATTACH: - DisableThreadLibraryCalls(hInstDLL); - break; - } - return TRUE; -}