Module: wine
Branch: master
Commit: 6dcf94b21c878de94a3a8673e86cda103d5e357e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=6dcf94b21c878de94a3a8673e…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Jan 19 19:49:08 2011 +0100
include: Add an assert.h msvcrt header.
---
include/Makefile.in | 1 +
include/msvcrt/assert.h | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/include/Makefile.in b/include/Makefile.in
index 0257b9b..e5c2b53 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -343,6 +343,7 @@ SRCDIR_INCLUDES = \
msiquery.h \
mssip.h \
mstcpip.h \
+ msvcrt/assert.h \
msvcrt/conio.h \
msvcrt/crtdbg.h \
msvcrt/crtdefs.h \
diff --git a/include/msvcrt/assert.h b/include/msvcrt/assert.h
new file mode 100644
index 0000000..c9cb164
--- /dev/null
+++ b/include/msvcrt/assert.h
@@ -0,0 +1,37 @@
+/*
+ * Assert support
+ *
+ * Copyright 2011 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
+ */
+
+#include <crtdefs.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#undef assert
+#ifdef NDEBUG
+#define assert(_expr) ((void)0)
+#else
+extern void __cdecl _assert(const char *, const char *, unsigned int);
+#define assert(_expr) (void)((!!(_expr)) || (_assert(#_expr, __FILE__, __LINE__), 0))
+#endif
+
+#ifdef __cplusplus
+}
+#endif
Module: website
Branch: master
Commit: a425621344690533a5eaa1384a64e13e39fa74b1
URL: http://source.winehq.org/git/website.git/?a=commit;h=a425621344690533a5eaa1…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Wed Jan 19 19:08:39 2011 +0100
German typo fixes
---
templates/de/download/deb.template | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/templates/de/download/deb.template b/templates/de/download/deb.template
index a437baf..35aaf3a 100644
--- a/templates/de/download/deb.template
+++ b/templates/de/download/deb.template
@@ -9,13 +9,13 @@ Wine für Ubuntu und Ubuntu Derivate
als <i>Pakete</i> die in <i>Repositories</i> untergebracht sind. Ubuntu's
Standard Repository enthält Wine, wenn du allerdings mit dem
neuesten Wine auf dem Laufenden bleiben willst nutze das von
-WineHQ mit folgenden Anleitung.
+WineHQ mit folgender Anleitung.
</p>
<h2>Hinzufügen des WineHQ Repository:</h2>
<p>Öffne das Software-Paketquellenmenü durch
-<b>Anwendungen->Software-Center</b>, dann<b>Bearbeiten->Software-Paketquellen...</b>.
+<b>Anwendungen->Software-Center</b>, dann <b>Bearbeiten->Software-Paketquellen...</b>
Wähle dann den <b>Software von Drittanbietern</b>-Reiter und klicke auf <b>Hinzufügen</b>.</p>
<img src="{$root}/images/distro/de_ubuntu-softwaresources1.png" width="686" height="516" alt="System->Systemverwaltung->Software-Paketquellen" border="0">
@@ -28,7 +28,7 @@ Wähle dann den <b>Software von Drittanbietern</b>-Reiter und klicke auf <b>Hinz
<p><i>Die 1.3 Pakete hier sind Betapakete. Das bedeutet, dass sie
in regelmäßigen Abständen
-<a href="http://wiki.winehq.org/Regression">Regressions</a> erleiden, wodurch
+<a href="http://wiki.winehq.org/Regression">Regressionen</a> erleiden, wodurch
eine Aktualisierung die Wine-Funktionalität beeinträchtigen kann. Wenn die stabile Version
Wine 1.2 bei dir funktioniert, willst du diese Betapakete wahrscheinlich nicht benutzen.</i></p>
Module: wine
Branch: master
Commit: 4a5c687069cd53a11b1537b5951f16121dc08d64
URL: http://source.winehq.org/git/wine.git/?a=commit;h=4a5c687069cd53a11b1537b59…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Jan 19 17:43:45 2011 +0100
actxprxy: Add proxies for shldisp.idl.
---
.gitignore | 2 ++
dlls/actxprxy/Makefile.in | 2 ++
dlls/actxprxy/actxprxy_shldisp.idl | 21 +++++++++++++++++++++
include/shldisp.idl | 3 +++
4 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index 3817eea..d91e568 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,6 +38,8 @@ dlls/actxprxy/actxprxy_ocmm.h
dlls/actxprxy/actxprxy_ocmm_p.c
dlls/actxprxy/actxprxy_servprov.h
dlls/actxprxy/actxprxy_servprov_p.c
+dlls/actxprxy/actxprxy_shldisp.h
+dlls/actxprxy/actxprxy_shldisp_p.c
dlls/actxprxy/actxprxy_shobjidl.h
dlls/actxprxy/actxprxy_shobjidl_p.c
dlls/actxprxy/actxprxy_urlhist.h
diff --git a/dlls/actxprxy/Makefile.in b/dlls/actxprxy/Makefile.in
index 15f8e3d..b879903 100644
--- a/dlls/actxprxy/Makefile.in
+++ b/dlls/actxprxy/Makefile.in
@@ -16,6 +16,7 @@ IDL_P_SRCS = \
actxprxy_objsafe.idl \
actxprxy_ocmm.idl \
actxprxy_servprov.idl \
+ actxprxy_shldisp.idl \
actxprxy_shobjidl.idl \
actxprxy_urlhist.idl
@@ -28,6 +29,7 @@ IDL_R_SRCS = \
actxprxy_objsafe.idl \
actxprxy_ocmm.idl \
actxprxy_servprov.idl \
+ actxprxy_shldisp.idl \
actxprxy_shobjidl.idl \
actxprxy_urlhist.idl
diff --git a/dlls/actxprxy/actxprxy_shldisp.idl b/dlls/actxprxy/actxprxy_shldisp.idl
new file mode 100644
index 0000000..81222a5
--- /dev/null
+++ b/dlls/actxprxy/actxprxy_shldisp.idl
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2011 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
+ */
+
+/* just a wrapper for shldisp.idl */
+
+#include "shldisp.idl"
diff --git a/include/shldisp.idl b/include/shldisp.idl
index ce6d555..8df56cd 100644
--- a/include/shldisp.idl
+++ b/include/shldisp.idl
@@ -31,6 +31,7 @@ import "comcat.idl";
* IAutoComplete interface
*/
[
+ local,
object,
uuid(00bb2762-6a77-11d0-a535-00c04fd7d062),
pointer_default(unique)
@@ -51,6 +52,7 @@ interface IAutoComplete : IUnknown
* IAutoComplete2 interface
*/
[
+ local,
object,
uuid(eac04bc0-3791-11d2-bb95-0060977b464c),
pointer_default(unique)
@@ -87,6 +89,7 @@ importlib("stdole2.tlb");
[
object,
+ oleautomation,
uuid(9ba05970-f6a8-11cf-a442-00a0c90a8f39),
pointer_default(unique)
]