From f2e7c43d3c211b40d352d86f72656df92fe5b488 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Fri, 26 Oct 2007 20:15:14 +0200 Subject: [PATCH] kernel32: Fix description for SetDefaultCommConfig. --- dlls/kernel32/comm.c | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/dlls/kernel32/comm.c b/dlls/kernel32/comm.c index 076b7610068..ea71a26784b 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; -- 2.11.4.GIT