Module: website
Branch: master
Commit: 42ee792bdbcad44485848243e2393b2240077d41
URL: http://source.winehq.org/git/website.git/?a=commit;h=42ee792bdbcad444858482…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Feb 20 23:24:55 2015 +0900
Wine release 1.7.37
---
news/en/2015022001.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/news/en/2015022001.xml b/news/en/2015022001.xml
new file mode 100644
index 0000000..509023c
--- /dev/null
+++ b/news/en/2015022001.xml
@@ -0,0 +1,16 @@
+<news>
+<date>February 20, 2015</date>
+<title>Wine 1.7.37 Released</title>
+<body>
+<p> The Wine development release 1.7.37 is now available.</p>
+<p> <a href="{$root}/announce/1.7.37">What's new</a> in this release:
+<ul>
+ <li>Interface change notifications.</li>
+ <li>Support for the UTF-7 encoding.</li>
+ <li>A number of graphical fixes for themed controls.</li>
+ <li>Wininet now implemented on top of Win32 sockets.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="http://prdownloads.sourceforge.net/wine/wine-1.7.37.tar.bz2">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>
Module: wine
Branch: master
Commit: c633cadb4f5a6962f63863fb3d63a56a5c24de3e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c633cadb4f5a6962f63863fb3…
Author: Austin English <austinenglish(a)gmail.com>
Date: Wed Feb 18 14:34:59 2015 -0600
include: Add msasn1.h.
---
include/Makefile.in | 1 +
include/msasn1.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/include/Makefile.in b/include/Makefile.in
index da674b9..02d5d88 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -411,6 +411,7 @@ SRCDIR_INCLUDES = \
msacm.h \
msacmdlg.h \
msacmdrv.h \
+ msasn1.h \
mscat.h \
msdaguid.h \
mshtmcid.h \
diff --git a/include/msasn1.h b/include/msasn1.h
new file mode 100644
index 0000000..8172849
--- /dev/null
+++ b/include/msasn1.h
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2015 Austin English
+ *
+ * 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
+ */
+#ifndef __MS_ASN1_H__
+#define __MS_ASN1_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef char ASN1char_t;
+typedef signed char ASN1int8_t;
+typedef unsigned char ASN1uint8_t;
+typedef unsigned short ASN1uint16_t;
+typedef signed short ASN1int16_t;
+typedef ULONG ASN1uint32_t;
+typedef LONG ASN1int32_t;
+
+typedef ASN1char_t *ASN1ztcharstring_t;
+typedef ASN1char16_t *ASN1ztchar16string_t;
+typedef ASN1char32_t *ASN1ztchar32string_t;
+typedef ASN1int32_t ASN1enum_t;
+typedef ASN1uint8_t ASN1octet_t;
+typedef ASN1uint8_t ASN1bool_t;
+typedef ASN1uint16_t ASN1choice_t;
+typedef ASN1uint32_t ASN1magic_t;
+typedef ASN1ztcharstring_t ASN1objectdescriptor_t;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __MS_ASN1_H__ */