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
590aaaf4
Commit
590aaaf4
authored
Jun 02, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Jun 02, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for GetVolumePathName(A,W).
parent
2b6e7dad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
kernel32.spec
dlls/kernel/kernel32.spec
+2
-2
volume.c
dlls/kernel/volume.c
+20
-0
No files found.
dlls/kernel/kernel32.spec
View file @
590aaaf4
...
...
@@ -526,8 +526,8 @@
@ stdcall GetVolumeInformationW(wstr ptr long ptr ptr ptr ptr long)
@ stub GetVolumeNameForVolumeMountPointA
@ stdcall GetVolumeNameForVolumeMountPointW(wstr long long)
@ st
ub GetVolumePathNameA
@ st
ub GetVolumePathNameW
@ st
dcall GetVolumePathNameA(str ptr long)
@ st
dcall GetVolumePathNameW(wstr ptr long)
@ stdcall GetWindowsDirectoryA(ptr long)
@ stdcall GetWindowsDirectoryW(ptr long)
@ stub GetWriteWatch
...
...
dlls/kernel/volume.c
View file @
590aaaf4
...
...
@@ -1357,3 +1357,23 @@ BOOL WINAPI GetDiskFreeSpaceA( LPCSTR root, LPDWORD cluster_sectors,
if
(
root
&&
!
(
rootW
=
FILE_name_AtoW
(
root
,
FALSE
)))
return
FALSE
;
return
GetDiskFreeSpaceW
(
rootW
,
cluster_sectors
,
sector_bytes
,
free_clusters
,
total_clusters
);
}
/***********************************************************************
* GetVolumePathNameA (KERNEL32.@)
*/
BOOL
WINAPI
GetVolumePathNameA
(
LPCSTR
filename
,
LPSTR
volumepathname
,
DWORD
buflen
)
{
FIXME
(
"(%s, %p, %ld), stub!
\n
"
,
debugstr_a
(
filename
),
volumepathname
,
buflen
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* GetVolumePathNameW (KERNEL32.@)
*/
BOOL
WINAPI
GetVolumePathNameW
(
LPCWSTR
filename
,
LPWSTR
volumepathname
,
DWORD
buflen
)
{
FIXME
(
"(%s, %p, %ld), stub!
\n
"
,
debugstr_w
(
filename
),
volumepathname
,
buflen
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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