Module: wine Branch: master Commit: 170c5526ca0aae0f788e9100e5628aab8908a2c8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=170c5526ca0aae0f788e9100e...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Feb 18 11:50:16 2021 +0100
resutils: Use --prefer-native instead of DLL_WINE_PREATTACH.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/resutils/Makefile.in | 5 +---- dlls/resutils/resutils.c | 48 ----------------------------------------------- 2 files changed, 1 insertion(+), 52 deletions(-)
diff --git a/dlls/resutils/Makefile.in b/dlls/resutils/Makefile.in index f5c43f88d1f..1d6c0777d01 100644 --- a/dlls/resutils/Makefile.in +++ b/dlls/resutils/Makefile.in @@ -1,7 +1,4 @@ MODULE = resutils.dll IMPORTLIB = resutils
-EXTRADLLFLAGS = -mno-cygwin - -C_SRCS = \ - resutils.c +EXTRADLLFLAGS = -Wb,--prefer-native diff --git a/dlls/resutils/resutils.c b/dlls/resutils/resutils.c deleted file mode 100644 index b9e3c66fa1a..00000000000 --- a/dlls/resutils/resutils.c +++ /dev/null @@ -1,48 +0,0 @@ -/* - * resutils main - * - * Copyright 2006 Benjamin Arai (Google) - * - * 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(resutils); - -/*********************************************************************** - * DllMain (RESUTILS.@) - * - */ -BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) -{ - TRACE("(0x%p, %d, %p)\n",hinstDLL,fdwReason,lpvReserved); - - switch(fdwReason) - { - case DLL_WINE_PREATTACH: - return FALSE; /* prefer native version */ - case DLL_PROCESS_ATTACH: - DisableThreadLibraryCalls( hinstDLL ); - break; - } - - return TRUE; -}