Fixed prototype order.

This commit is contained in:
Marcus Meissner 1999-09-03 14:59:10 +00:00 committed by Alexandre Julliard
parent 808403fe6f
commit c37a126f65
1 changed files with 8 additions and 8 deletions

View File

@ -704,6 +704,14 @@ LPSTR WINAPI lstrrchr( LPCSTR lpStart, LPCSTR lpEnd, WORD wMatch )
return ((LPSTR)lpGotIt); return ((LPSTR)lpGotIt);
} }
/***********************************************************************
* ChrCmpW
* This fuction returns FALSE if both words match, TRUE otherwise...
*/
static BOOL ChrCmpW( WORD word1, WORD word2) {
return (word1 != word2);
}
/*********************************************************************** /***********************************************************************
* lstrrchrw (Not a Windows API) * lstrrchrw (Not a Windows API)
* *
@ -740,11 +748,3 @@ static BOOL ChrCmpA( WORD word1, WORD word2) {
} }
return TRUE; return TRUE;
} }
/***********************************************************************
* ChrCmpW
* This fuction returns FALSE if both words match, TRUE otherwise...
*/
static BOOL ChrCmpW( WORD word1, WORD word2) {
return (word1 != word2);
}