Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
908eab4f
Commit
908eab4f
authored
Feb 21, 2009
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Feb 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Implement GetShortPathName16.
parent
74f2eccc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
file16.c
dlls/kernel32/file16.c
+9
-0
krnl386.exe.spec
dlls/kernel32/krnl386.exe.spec
+1
-1
No files found.
dlls/kernel32/file16.c
View file @
908eab4f
...
...
@@ -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
,
...
...
dlls/kernel32/krnl386.exe.spec
View file @
908eab4f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment