[PATCH] kernel32: Fix description for SetDefaultCommConfig

Detlef Riekenberg wine.dev at web.de
Fri Oct 26 13:15:14 CDT 2007


---
 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;
-- 
1.4.1


--=-rr9kSIiIDWz06uQUb1W1--




More information about the wine-patches mailing list