Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3c92b6c5
Commit
3c92b6c5
authored
Oct 23, 2009
by
Louis Lenders
Committed by
Alexandre Julliard
Oct 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub for GetVolumePathNamesForVolumeNameW.
parent
9ea4e18b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
volume.c
dlls/kernel32/volume.c
+10
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
3c92b6c5
...
...
@@ -669,7 +669,7 @@
@ stdcall GetVolumePathNameA(str ptr long)
@ stdcall GetVolumePathNameW(wstr ptr long)
# @ stub GetVolumePathNamesForVolumeNameA
# @ stub GetVolumePathNamesForVolumeNameW
@ stdcall GetVolumePathNamesForVolumeNameW(wstr ptr long ptr)
@ stdcall GetWindowsDirectoryA(ptr long)
@ stdcall GetWindowsDirectoryW(ptr long)
@ stdcall GetWriteWatch(long ptr long ptr ptr ptr)
...
...
dlls/kernel32/volume.c
View file @
3c92b6c5
...
...
@@ -1566,6 +1566,16 @@ BOOL WINAPI GetVolumePathNameW(LPCWSTR filename, LPWSTR volumepathname, DWORD bu
}
/***********************************************************************
* GetVolumePathNamesForVolumeNameW (KERNEL32.@)
*/
BOOL
WINAPI
GetVolumePathNamesForVolumeNameW
(
LPCWSTR
volumename
,
LPWSTR
volumepathname
,
DWORD
buflen
,
PDWORD
returnlen
)
{
FIXME
(
"(%s, %p, %d, %p), stub!
\n
"
,
debugstr_w
(
volumename
),
volumepathname
,
buflen
,
returnlen
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* FindFirstVolumeA (KERNEL32.@)
*/
HANDLE
WINAPI
FindFirstVolumeA
(
LPSTR
volume
,
DWORD
len
)
...
...
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