Module: wine
Branch: refs/heads/master
Commit: fedd5250e362421c5df5edf7d8a9056f5613e199
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=fedd5250e362421c5df5edf…
Author: Mike McCormack <mike(a)codeweavers.com>
Date: Wed Mar 22 13:46:20 2006 +0900
riched20: Add a version resource.
---
dlls/riched20/.gitignore | 1 +
dlls/riched20/Makefile.in | 2 ++
dlls/riched20/version.rc | 26 ++++++++++++++++++++++++++
3 files changed, 29 insertions(+), 0 deletions(-)
create mode 100644 dlls/riched20/version.rc
diff --git a/dlls/riched20/.gitignore b/dlls/riched20/.gitignore
index aa58e05..d74aa87 100644
--- a/dlls/riched20/.gitignore
+++ b/dlls/riched20/.gitignore
@@ -1,2 +1,3 @@
Makefile
libriched20.def
+version.res
diff --git a/dlls/riched20/Makefile.in b/dlls/riched20/Makefile.in
index c4deaf8..b089f89 100644
--- a/dlls/riched20/Makefile.in
+++ b/dlls/riched20/Makefile.in
@@ -28,6 +28,8 @@ C_SRCS = \
SUBDIRS = tests
+RC_SRCS = version.rc
+
@MAKE_DLL_RULES@
### Dependencies:
diff --git a/dlls/riched20/version.rc b/dlls/riched20/version.rc
new file mode 100644
index 0000000..bc907c9
--- /dev/null
+++ b/dlls/riched20/version.rc
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2006 Mike McCormack
+ *
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine Richedit dll"
+#define WINE_FILENAME_STR "riched20.dll"
+#define WINE_FILEVERSION 5,30,23,1215
+#define WINE_FILEVERSION_STR "5,30,23,1215"
+#define WINE_PRODUCTVERSION 5,30,23,1215
+#define WINE_PRODUCTVERSION_STR "5,30,23,1215"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: refs/heads/master
Commit: cfef0fee01f19dd1117d1bf794eb6eddf6157fd1
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=cfef0fee01f19dd1117d1bf…
Author: Mike McCormack <mike(a)codeweavers.com>
Date: Wed Mar 22 13:45:35 2006 +0900
include: Add softpub.h.
---
include/Makefile.in | 1 +
include/softpub.h | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+), 0 deletions(-)
create mode 100644 include/softpub.h
diff --git a/include/Makefile.in b/include/Makefile.in
index 033ad99..c40e5f9 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -244,6 +244,7 @@ WINDOWS_INCLUDES = \
shlwapi.h \
sipbase.h \
snmp.h \
+ softpub.h \
sql.h \
sqlext.h \
sqltypes.h \
diff --git a/include/softpub.h b/include/softpub.h
new file mode 100644
index 0000000..b5836b0
--- /dev/null
+++ b/include/softpub.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2006 Mike McCormack
+ *
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __WINE_SOFTPUB_H
+#define __WINE_SOFTPUB_H
+
+#include <wintrust.h>
+
+#define WINTRUST_ACTION_GENERIC_CERT_VERIFY \
+ { 0x189a3842, 0x3041, 0x11d1, { 0x85,0xe1,0x00,0xc0,0x4f,0xc2,0x95,0xee }}
+
+#define WINTRUST_ACTION_GENERIC_CHAIN_VERIFY \
+ { 0xfc451c16, 0xac75, 0x11d1, { 0xb4,0xb8,0x00,0xc0,0x4f,0xb6,0x6e,0xa0 }}
+
+#define WINTRUST_ACTION_GENERIC_VERIFY_V2 \
+ { 0xaac56b, 0xcd44, 0x11d0, { 0x8c,0xc2,0x00,0xc0,0x4f,0xc2,0x95,0xee }}
+#define WINTRUST_ACTION_TRUSTPROVIDER_TEST \
+ { 0x573e31f8, 0xddba, 0x11d0, { 0x8c,0xcb,0x00,0xc0,0x4f,0xc2,0x95,0xee }}
+
+#endif /* __WINE_SOFTPUB_H */