Module: wine
Branch: master
Commit: de2d53c6f25ca29cc52306695ebf556b106922cb
URL: https://source.winehq.org/git/wine.git/?a=commit;h=de2d53c6f25ca29cc5230669…
Author: Owen Rudge <orudge(a)codeweavers.com>
Date: Wed Sep 19 21:29:14 2018 +0100
wsdapi: Prefer Wine version.
Signed-off-by: Owen Rudge <orudge(a)codeweavers.com>
Signed-off-by: Huw Davies <huw(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/wsdapi/Makefile.in | 1 -
dlls/wsdapi/main.c | 43 -------------------------------------------
2 files changed, 44 deletions(-)
diff --git a/dlls/wsdapi/Makefile.in b/dlls/wsdapi/Makefile.in
index f5eb0fd..dd7b350 100644
--- a/dlls/wsdapi/Makefile.in
+++ b/dlls/wsdapi/Makefile.in
@@ -5,7 +5,6 @@ IMPORTS = bcrypt iphlpapi rpcrt4 user32 webservices ws2_32
C_SRCS = \
address.c \
discovery.c \
- main.c \
memory.c \
msgparams.c \
network.c \
diff --git a/dlls/wsdapi/main.c b/dlls/wsdapi/main.c
deleted file mode 100644
index ea0fef3..0000000
--- a/dlls/wsdapi/main.c
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Web Services on Devices
- *
- * Copyright 2017 Owen Rudge for CodeWeavers
- *
- * 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(wsdapi);
-
-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;
-}