Module: wine
Branch: master
Commit: 5a88f52f3f29d55de78ccf4aed267234eb264122
URL: http://source.winehq.org/git/wine.git/?a=commit;h=5a88f52f3f29d55de78ccf4ae…
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Wed Mar 29 11:14:43 2017 +0200
webservices: No longer prefer native.
Signed-off-by: Hans Leidekker <hans(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)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;
-}
Module: wine
Branch: master
Commit: 7584e082bf6669923d9c16ca6d617b767179d410
URL: http://source.winehq.org/git/wine.git/?a=commit;h=7584e082bf6669923d9c16ca6…
Author: Andrey Gusev <andrey.goosev(a)gmail.com>
Date: Tue Mar 28 17:16:01 2017 +0300
kernelbase: Add QuirkIsEnabled3 stub.
Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
.../api-ms-win-core-quirks-l1-1-0.spec | 2 +-
dlls/kernelbase/Makefile.in | 3 +++
dlls/kernelbase/kernelbase.spec | 2 +-
dlls/kernelbase/main.c | 30 ++++++++++++++++++++++
4 files changed, 35 insertions(+), 2 deletions(-)
diff --git a/dlls/api-ms-win-core-quirks-l1-1-0/api-ms-win-core-quirks-l1-1-0.spec b/dlls/api-ms-win-core-quirks-l1-1-0/api-ms-win-core-quirks-l1-1-0.spec
index 761120f..e8f77c7 100644
--- a/dlls/api-ms-win-core-quirks-l1-1-0/api-ms-win-core-quirks-l1-1-0.spec
+++ b/dlls/api-ms-win-core-quirks-l1-1-0/api-ms-win-core-quirks-l1-1-0.spec
@@ -2,7 +2,7 @@
@ stub QuirkGetData2
@ stub QuirkIsEnabled
@ stub QuirkIsEnabled2
-@ stub QuirkIsEnabled3
+@ stdcall QuirkIsEnabled3(ptr ptr) kernelbase.QuirkIsEnabled3
@ stub QuirkIsEnabledForPackage
@ stub QuirkIsEnabledForPackage2
@ stub QuirkIsEnabledForProcess
diff --git a/dlls/kernelbase/Makefile.in b/dlls/kernelbase/Makefile.in
index b9caed0..74df98c 100644
--- a/dlls/kernelbase/Makefile.in
+++ b/dlls/kernelbase/Makefile.in
@@ -1 +1,4 @@
MODULE = kernelbase.dll
+
+C_SRCS = \
+ main.c
diff --git a/dlls/kernelbase/kernelbase.spec b/dlls/kernelbase/kernelbase.spec
index ff0e75f..e8cf502 100644
--- a/dlls/kernelbase/kernelbase.spec
+++ b/dlls/kernelbase/kernelbase.spec
@@ -1225,7 +1225,7 @@
# @ stub QuirkGetData2
# @ stub QuirkIsEnabled
# @ stub QuirkIsEnabled2
-# @ stub QuirkIsEnabled3
+@ stdcall QuirkIsEnabled3(ptr ptr)
# @ stub QuirkIsEnabledForPackage
# @ stub QuirkIsEnabledForPackage2
# @ stub QuirkIsEnabledForPackage3
diff --git a/dlls/kernelbase/main.c b/dlls/kernelbase/main.c
new file mode 100644
index 0000000..30cba3f
--- /dev/null
+++ b/dlls/kernelbase/main.c
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2017 Andrey Gusev
+ *
+ * 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 "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(kernelbase);
+
+/***********************************************************************
+ * QuirkIsEnabled3 (KERNELBASE.@)
+ */
+BOOL WINAPI QuirkIsEnabled3(void *unk1, void *unk2)
+{
+ FIXME("(%p, %p) stub!\n", unk1, unk2);
+ return FALSE;
+}