mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
Added Reserved5 -> lstrcmp16.
This commit is contained in:
parent
50ea1101c8
commit
0bc1d2729b
@ -93,7 +93,7 @@ owner kernel32
|
||||
84 pascal _llseek(word long word) _llseek16
|
||||
85 pascal16 _lopen(str word) _lopen16
|
||||
86 pascal16 _lwrite(word ptr word) _lwrite16
|
||||
87 stub Reserved5 #lstrcmp16
|
||||
87 pascal16 Reserved5(str str) KERNEL_lstrcmp16
|
||||
88 pascal lstrcpy(segptr str) lstrcpy16
|
||||
89 pascal lstrcat(segstr str) lstrcat16
|
||||
90 pascal16 lstrlen(str) lstrlen16
|
||||
|
@ -173,3 +173,8 @@ SEGPTR WINAPI KERNEL_AnsiLower16( SEGPTR strOrChar )
|
||||
}
|
||||
else return tolower((char)strOrChar);
|
||||
}
|
||||
|
||||
INT16 WINAPI KERNEL_lstrcmp16( LPCSTR str1, LPCSTR str2 )
|
||||
{
|
||||
return (INT16)strcmp( str1, str2 );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user