[PATCH resend 08/10] dssenh: Makefile and registry.

Zhang Shuai wxsxsdz at gmail.com
Sun Nov 17 13:01:33 CST 2019


---
 dlls/dssenh/Makefile.in |  5 ++++
 dlls/dssenh/dssenh.rgs  | 60 +++++++++++++++++++++++++++++++++++++++++
 dlls/dssenh/rsrc.rc     | 31 +++++++++++++++++++++
 3 files changed, 96 insertions(+)
 create mode 100644 dlls/dssenh/dssenh.rgs
 create mode 100644 dlls/dssenh/rsrc.rc

diff --git a/dlls/dssenh/Makefile.in b/dlls/dssenh/Makefile.in
index 4f05beee51..132ad755ee 100644
--- a/dlls/dssenh/Makefile.in
+++ b/dlls/dssenh/Makefile.in
@@ -1,6 +1,11 @@
 MODULE    = dssenh.dll
+IMPORTLIB = dssenh
+IMPORTS   = bcrypt crypt32 advapi32
+EXTRAINCL = -I$(top_srcdir)/dlls/
 
 EXTRADLLFLAGS = -mno-cygwin
 
 C_SRCS = \
 	main.c
+
+RC_SRCS = rsrc.rc
diff --git a/dlls/dssenh/dssenh.rgs b/dlls/dssenh/dssenh.rgs
new file mode 100644
index 0000000000..e16d8e0bc7
--- /dev/null
+++ b/dlls/dssenh/dssenh.rgs
@@ -0,0 +1,60 @@
+HKLM
+{
+    NoRemove Software
+    {
+        NoRemove Microsoft
+        {
+            NoRemove Cryptography
+            {
+                NoRemove Defaults
+                {
+                    NoRemove Provider
+                    {
+                        ForceRemove 'Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider'
+                        {
+                            val 'Image Path' = s '%MODULE%'
+                            val 'Signature' = b deadbeef
+                            val 'Type' = d 13
+                        }
+                        ForceRemove 'Microsoft Base DSS and Diffie-Hellman Cryptographic Provider'
+                        {
+                            val 'Image Path' = s '%MODULE%'
+                            val 'Signature' = b deadbeef
+                            val 'Type' = d 13
+                        }
+                        ForceRemove 'Microsoft Base DSS Cryptographic Provider'
+                        {
+                            val 'Image Path' = s '%MODULE%'
+                            val 'Signature' = b deadbeef
+                            val 'Type' = d 3
+                        }
+                        ForceRemove 'Microsoft DH SChannel Cryptographic Provider'
+                        {
+                            val 'Image Path' = s '%MODULE%'
+                            val 'Signature' = b deadbeef
+                            val 'Type' = d 18
+                        }
+                    }
+                    NoRemove 'Provider Types'
+                    {
+                        ForceRemove 'Type 013'
+                        {
+                            val 'Name' = s 'Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider'
+                            val 'TypeName' = s 'DSS Signature with Diffe-zhellman Key Exchange'
+                        }
+                        ForceRemove 'Type 003'
+                        {
+                            val 'Name' = s 'Microsoft Base DSS Cryptographic Provider'
+                            val 'TypeName' = s 'DSS Signature'
+                        }
+                        ForceRemove 'Type 018'
+                        {
+                            val 'Name' = s 'Microsoft DH SChannel Cryptographic Provider'
+                            val 'TypeName' = s 'Diffie-Hellman SChannel'
+                        }
+                    }
+                }
+            }
+        }
+    }
+}
diff --git a/dlls/dssenh/rsrc.rc b/dlls/dssenh/rsrc.rc
new file mode 100644
index 0000000000..3ec4fc17f1
--- /dev/null
+++ b/dlls/dssenh/rsrc.rc
@@ -0,0 +1,31 @@
+/*
+ * Resources for dssenh
+ *
+ * Copyright (c) 2007 Alexandre Julliard
+ *
+ * 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
+ */
+
+/* @makedep: dssenh.rgs */
+1 WINE_REGISTRY dssenh.rgs
+
+#define WINE_FILEDESCRIPTION_STR "Wine dssenh"
+#define WINE_FILENAME_STR "dssenh.dll"
+#define WINE_FILEVERSION 5,1,2600,2180
+#define WINE_FILEVERSION_STR "5.1.2600.2180"
+#define WINE_PRODUCTVERSION 5,1,2600,2180
+#define WINE_PRODUCTVERSION_STR "5.1.2600.2180"
+
+#include "wine/wine_common_ver.rc"
-- 
2.21.0




More information about the wine-devel mailing list