Module: wine Branch: master Commit: 505ab26841741d094b663a8a121b3fbd03d1b211 URL: https://source.winehq.org/git/wine.git/?a=commit;h=505ab26841741d094b663a8a1...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Feb 18 11:55:43 2021 +0100
wuaueng: Use --prefer-native instead of DLL_WINE_PREATTACH.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/wuaueng/Makefile.in | 5 +---- dlls/wuaueng/main.c | 44 -------------------------------------------- 2 files changed, 1 insertion(+), 48 deletions(-)
diff --git a/dlls/wuaueng/Makefile.in b/dlls/wuaueng/Makefile.in index c74d7d9da42..e710511ab51 100644 --- a/dlls/wuaueng/Makefile.in +++ b/dlls/wuaueng/Makefile.in @@ -1,8 +1,5 @@ MODULE = wuaueng.dll
-EXTRADLLFLAGS = -mno-cygwin - -C_SRCS = \ - main.c +EXTRADLLFLAGS = -Wb,--prefer-native
RC_SRCS = version.rc diff --git a/dlls/wuaueng/main.c b/dlls/wuaueng/main.c deleted file mode 100644 index d49d3b05d02..00000000000 --- a/dlls/wuaueng/main.c +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright 2009 Louis Lenders - * - * 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(wuaueng); - -/***************************************************** - * DllMain - */ -BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved ) -{ - TRACE("(%p, %d, %p)\n", hinst, reason, reserved); - - switch(reason) - { - case DLL_WINE_PREATTACH: - return FALSE; /* prefer native version */ - - case DLL_PROCESS_ATTACH: - DisableThreadLibraryCalls( hinst ); - break; - } - return TRUE; -}