Commit 908eab4f authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

kernel32: Implement GetShortPathName16.

parent 74f2eccc
......@@ -540,6 +540,15 @@ UINT16 WINAPI SetHandleCount16( UINT16 count )
/***********************************************************************
* GetShortPathName (KERNEL.274)
*/
WORD WINAPI GetShortPathName16( LPCSTR longpath, LPSTR shortpath, WORD len )
{
return GetShortPathNameA( longpath, shortpath, len );
}
/***********************************************************************
* WritePrivateProfileStruct (KERNEL.406)
*/
BOOL16 WINAPI WritePrivateProfileStruct16 (LPCSTR section, LPCSTR key,
......
......@@ -249,7 +249,7 @@
262 stub WOWWaitForMsgAndEvent
263 stub WOWMsgBox
273 stub K273
274 stub GetShortPathName
274 pascal -ret16 GetShortPathName(str ptr word) GetShortPathName16
# 310-356 are again shared between all versions
......
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