Fixed prototype order.
This commit is contained in:
parent
808403fe6f
commit
c37a126f65
|
@ -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);
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue