From 5a88f52f3f29d55de78ccf4aed267234eb264122 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Wed, 29 Mar 2017 11:14:43 +0200 Subject: [PATCH] webservices: No longer prefer native. Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard --- dlls/webservices/Makefile.in | 1 - dlls/webservices/main.c | 44 ------------------------------------ 2 files changed, 45 deletions(-) delete mode 100644 dlls/webservices/main.c diff --git a/dlls/webservices/Makefile.in b/dlls/webservices/Makefile.in index 8de4f6b2b96..342ecc90681 100644 --- a/dlls/webservices/Makefile.in +++ b/dlls/webservices/Makefile.in @@ -4,7 +4,6 @@ IMPORTS = winhttp rpcrt4 user32 C_SRCS = \ channel.c \ - main.c \ msg.c \ proxy.c \ reader.c \ diff --git a/dlls/webservices/main.c b/dlls/webservices/main.c deleted file mode 100644 index f99c5cd2425..00000000000 --- a/dlls/webservices/main.c +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Web Services - * - * Copyright 2013 Alistair Leslie-Hughes - * - * 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 - -#include "windef.h" -#include "winbase.h" -#include "webservices.h" -#include "wine/debug.h" - -WINE_DEFAULT_DEBUG_CHANNEL(webservices); - -BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) -{ - TRACE("(%p, %u, %p)\n", instance, reason, reserved); - - switch (reason) - { - case DLL_WINE_PREATTACH: - return FALSE; /* prefer native version */ - case DLL_PROCESS_ATTACH: - DisableThreadLibraryCalls(instance); - break; - } - - return TRUE; -}