kernel32: Implement GetShortPathName16.
This commit is contained in:
parent
74f2eccc90
commit
908eab4f1f
|
@ -539,6 +539,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)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue