Commit 0bc1d272 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Added Reserved5 -> lstrcmp16.

parent 50ea1101
......@@ -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 );
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment