kernel32: Fix function description of CompareStringA and lstrcmpA.

This commit is contained in:
Frédéric Delanoy 2011-07-20 17:20:58 +02:00 committed by Alexandre Julliard
parent 3d3d5595f1
commit 6471e862f6
1 changed files with 2 additions and 2 deletions

View File

@ -2843,7 +2843,7 @@ INT WINAPI CompareStringW(LCID lcid, DWORD style,
*
* RETURNS
* Success: CSTR_LESS_THAN, CSTR_EQUAL or CSTR_GREATER_THAN depending on whether
* str2 is less than, equal to or greater than str1 respectively.
* str1 is less than, equal to or greater than str2 respectively.
* Failure: FALSE. Use GetLastError() to determine the cause.
*/
INT WINAPI CompareStringA(LCID lcid, DWORD style,
@ -2914,7 +2914,7 @@ INT WINAPI CompareStringA(LCID lcid, DWORD style,
*
* RETURNS
* Success: A number less than, equal to or greater than 0 depending on whether
* str2 is less than, equal to or greater than str1 respectively.
* str1 is less than, equal to or greater than str2 respectively.
* Failure: FALSE. Use GetLastError() to determine the cause.
*/
int WINAPI lstrcmpA(LPCSTR str1, LPCSTR str2)