Module: wine
Branch: master
Commit: f2e7c43d3c211b40d352d86f72656df92fe5b488
URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2e7c43d3c211b40d352d86f7…
Author: Detlef Riekenberg <wine.dev(a)web.de>
Date: Fri Oct 26 20:15:14 2007 +0200
kernel32: Fix description for SetDefaultCommConfig.
---
dlls/kernel32/comm.c | 30 ++++++++++++++----------------
1 files changed, 14 insertions(+), 16 deletions(-)
diff --git a/dlls/kernel32/comm.c b/dlls/kernel32/comm.c
index 076b761..ea71a26 100644
--- a/dlls/kernel32/comm.c
+++ b/dlls/kernel32/comm.c
@@ -1301,19 +1301,21 @@ BOOL WINAPI SetCommConfig(
}
/***********************************************************************
- * SetDefaultCommConfigA (KERNEL32.@)
+ * SetDefaultCommConfigW (KERNEL32.@)
*
- * Initializes the default configuration for the specified communication
- * device. (ascii)
+ * Initializes the default configuration for a communication device.
+ *
+ * PARAMS
+ * lpszDevice [I] Name of the device targeted for configuration
+ * lpCommConfig [I] PTR to a buffer with the configuration for the device
+ * dwSize [I] Number of bytes in the buffer
*
* RETURNS
+ * Failure: FALSE
+ * Success: TRUE, and default configuration saved
*
- * True if the device was found and the defaults set, false otherwise
*/
-BOOL WINAPI SetDefaultCommConfigW(
- LPCWSTR lpszDevice, /* [in] The ascii name of the device targeted for configuration. */
- LPCOMMCONFIG lpCommConfig, /* [in] The default configuration for the device. */
- DWORD dwSize) /* [in] The number of bytes in the configuration structure. */
+BOOL WINAPI SetDefaultCommConfigW(LPCWSTR lpszDevice, LPCOMMCONFIG lpCommConfig, DWORD dwSize)
{
FARPROC lpfnSetDefaultCommConfig;
HMODULE hConfigModule;
@@ -1336,18 +1338,14 @@ BOOL WINAPI SetDefaultCommConfigW(
/***********************************************************************
- * SetDefaultCommConfigW (KERNEL32.@)
+ * SetDefaultCommConfigA (KERNEL32.@)
*
- * Initializes the default configuration for the specified
- * communication device. (unicode)
+ * Initializes the default configuration for a communication device.
*
- * RETURNS
+ * See SetDefaultCommConfigW.
*
*/
-BOOL WINAPI SetDefaultCommConfigA(
- LPCSTR lpszDevice, /* [in] The unicode name of the device targeted for configuration. */
- LPCOMMCONFIG lpCommConfig, /* [in] The default configuration for the device. */
- DWORD dwSize) /* [in] The number of bytes in the configuration structure. */
+BOOL WINAPI SetDefaultCommConfigA(LPCSTR lpszDevice, LPCOMMCONFIG lpCommConfig, DWORD dwSize)
{
BOOL r;
LPWSTR lpDeviceW = NULL;
Module: website
Branch: master
Commit: f72fc42bb71e5ed37121812338208a65cade6be5
URL: http://source.winehq.org/git/website.git/?a=commit;h=f72fc42bb71e5ed3712181…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Oct 26 19:32:45 2007 +0200
Wine release 0.9.48
---
include/winehq.conf | 2 +-
news/2007102601.xml | 24 ++++++++++++++++++++++++
2 files changed, 25 insertions(+), 1 deletions(-)
diff --git a/include/winehq.conf b/include/winehq.conf
index 7461043..95651c6 100644
--- a/include/winehq.conf
+++ b/include/winehq.conf
@@ -29,7 +29,7 @@ news_xml_path: news
wwn_xml_path: wwn
# Snapshot Date
-snapshot_date: 0.9.47
+snapshot_date: 0.9.48
# Current RH Packages Snapshot Date
snapshot_date_rh: 0.9.2
diff --git a/news/2007102601.xml b/news/2007102601.xml
new file mode 100644
index 0000000..271577b
--- /dev/null
+++ b/news/2007102601.xml
@@ -0,0 +1,24 @@
+<news>
+<date>October 26, 2007</date>
+<title>Wine 0.9.48 Released</title>
+<body>
+<p>Wine 0.9.48 was released today, with the following main changes:</p>
+
+<ul>
+<li>Still more fixes for regression test failures.</li>
+<li>Much more complete cryptnet implementation.</li>
+<li>WIDL is now able to generate the oleaut32 proxy code.</li>
+<li>Lots of bug fixes.</li>
+</ul>
+
+<p>
+Binary packages are in the process of being built and it may take a
+few days for them to appear, but the source is
+<a href="http://prdownloads.sourceforge.net/wine/wine-0.9.48.tar.bz2">available now</a>.
+You can find out more about this release in the
+<a href="?announce=0.9.48">announcement</a>. Check out our
+<a href="/site/download">download page</a> for packages for your
+distribution.
+</p>
+</body>
+</news>