Louis Lenders : srclient: Add new stub dll.

Alexandre Julliard julliard at winehq.org
Fri Apr 13 15:54:51 CDT 2018


Module: wine
Branch: master
Commit: a56e57b3ec6c8e0cf4ba839282bc2b0fb0dee683
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a56e57b3ec6c8e0cf4ba839282bc2b0fb0dee683

Author: Louis Lenders <xerox.xerox2000x at gmail.com>
Date:   Fri Apr 13 09:31:55 2018 +0200

srclient: Add new stub dll.

Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 configure                   |  2 ++
 configure.ac                |  1 +
 dlls/srclient/Makefile.in   |  4 ++++
 dlls/srclient/main.c        | 41 +++++++++++++++++++++++++++++++++++++++++
 dlls/srclient/srclient.spec | 13 +++++++++++++
 5 files changed, 61 insertions(+)

diff --git a/configure b/configure
index 73d909f..8976ad3 100755
--- a/configure
+++ b/configure
@@ -1508,6 +1508,7 @@ enable_slc
 enable_snmpapi
 enable_softpub
 enable_spoolss
+enable_srclient
 enable_sspicli
 enable_stdole2_tlb
 enable_stdole32_tlb
@@ -19001,6 +19002,7 @@ wine_fn_config_makefile dlls/softpub enable_softpub
 wine_fn_config_makefile dlls/sound.drv16 enable_win16
 wine_fn_config_makefile dlls/spoolss enable_spoolss
 wine_fn_config_makefile dlls/spoolss/tests enable_tests
+wine_fn_config_makefile dlls/srclient enable_srclient
 wine_fn_config_makefile dlls/sspicli enable_sspicli
 wine_fn_config_makefile dlls/stdole2.tlb enable_stdole2_tlb
 wine_fn_config_makefile dlls/stdole32.tlb enable_stdole32_tlb
diff --git a/configure.ac b/configure.ac
index 60c410c..b9ef668 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3624,6 +3624,7 @@ WINE_CONFIG_MAKEFILE(dlls/softpub)
 WINE_CONFIG_MAKEFILE(dlls/sound.drv16,enable_win16)
 WINE_CONFIG_MAKEFILE(dlls/spoolss)
 WINE_CONFIG_MAKEFILE(dlls/spoolss/tests)
+WINE_CONFIG_MAKEFILE(dlls/srclient)
 WINE_CONFIG_MAKEFILE(dlls/sspicli)
 WINE_CONFIG_MAKEFILE(dlls/stdole2.tlb)
 WINE_CONFIG_MAKEFILE(dlls/stdole32.tlb)
diff --git a/dlls/srclient/Makefile.in b/dlls/srclient/Makefile.in
new file mode 100644
index 0000000..5c11e75
--- /dev/null
+++ b/dlls/srclient/Makefile.in
@@ -0,0 +1,4 @@
+MODULE    = srclient.dll
+
+C_SRCS = \
+	main.c
diff --git a/dlls/srclient/main.c b/dlls/srclient/main.c
new file mode 100644
index 0000000..6c2e7b4
--- /dev/null
+++ b/dlls/srclient/main.c
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2018 Louis Lenders
+ *
+ * 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 "config.h"
+#include <stdarg.h>
+
+#include "windef.h"
+#include "winbase.h"
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(srclient);
+
+BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD reason, LPVOID lpv)
+{
+    TRACE("(%p, %d, %p)\n", hInstDLL, reason, lpv);
+
+    switch (reason)
+    {
+    case DLL_WINE_PREATTACH:
+        return FALSE;    /* prefer native version */
+    case DLL_PROCESS_ATTACH:
+        DisableThreadLibraryCalls(hInstDLL);
+        break;
+    }
+    return TRUE;
+}
diff --git a/dlls/srclient/srclient.spec b/dlls/srclient/srclient.spec
new file mode 100644
index 0000000..0d7a812
--- /dev/null
+++ b/dlls/srclient/srclient.spec
@@ -0,0 +1,13 @@
+1 stub SysprepCleanup
+2 stub SysprepGeneralize
+@ stub DisableSR
+@ stub DisableSRInternal
+@ stub EnableSR
+@ stub EnableSREx
+@ stub EnableSRInternal
+@ stub SRNewSystemId
+@ stub SRRemoveRestorePoint
+@ stdcall SRSetRestorePointA(ptr ptr) sfc_os.SRSetRestorePointA
+@ stub SRSetRestorePointInternal
+@ stdcall SRSetRestorePointW(ptr ptr) sfc_os.SRSetRestorePointW
+@ stub SetSRStateAfterSetup




More information about the wine-cvs mailing list