Hans Leidekker : webservices: No longer prefer native.

Alexandre Julliard julliard at winehq.org
Wed Mar 29 15:02:51 CDT 2017


Module: wine
Branch: master
Commit: 5a88f52f3f29d55de78ccf4aed267234eb264122
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5a88f52f3f29d55de78ccf4aed267234eb264122

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Wed Mar 29 11:14:43 2017 +0200

webservices: No longer prefer native.

Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/webservices/Makefile.in |  1 -
 dlls/webservices/main.c      | 44 --------------------------------------------
 2 files changed, 45 deletions(-)

diff --git a/dlls/webservices/Makefile.in b/dlls/webservices/Makefile.in
index 8de4f6b..342ecc9 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 f99c5cd..0000000
--- 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 <stdarg.h>
-
-#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;
-}




More information about the wine-cvs mailing list