Added Reserved5 -> lstrcmp16.

This commit is contained in:
Andreas Mohr 2001-01-02 20:00:37 +00:00 committed by Alexandre Julliard
parent 50ea1101c8
commit 0bc1d2729b
2 changed files with 6 additions and 1 deletions

View File

@ -93,7 +93,7 @@ owner kernel32
84 pascal _llseek(word long word) _llseek16 84 pascal _llseek(word long word) _llseek16
85 pascal16 _lopen(str word) _lopen16 85 pascal16 _lopen(str word) _lopen16
86 pascal16 _lwrite(word ptr word) _lwrite16 86 pascal16 _lwrite(word ptr word) _lwrite16
87 stub Reserved5 #lstrcmp16 87 pascal16 Reserved5(str str) KERNEL_lstrcmp16
88 pascal lstrcpy(segptr str) lstrcpy16 88 pascal lstrcpy(segptr str) lstrcpy16
89 pascal lstrcat(segstr str) lstrcat16 89 pascal lstrcat(segstr str) lstrcat16
90 pascal16 lstrlen(str) lstrlen16 90 pascal16 lstrlen(str) lstrlen16

View File

@ -173,3 +173,8 @@ SEGPTR WINAPI KERNEL_AnsiLower16( SEGPTR strOrChar )
} }
else return tolower((char)strOrChar); else return tolower((char)strOrChar);
} }
INT16 WINAPI KERNEL_lstrcmp16( LPCSTR str1, LPCSTR str2 )
{
return (INT16)strcmp( str1, str2 );
}