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
c56eafcb
Commit
c56eafcb
authored
Feb 18, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub implementation for FindFirstVolumeMountPoint{A, W}.
parent
7605dc0d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
volume.c
dlls/kernel32/volume.c
+20
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
c56eafcb
...
...
@@ -372,8 +372,8 @@
@ stdcall FindFirstFileExW(wstr long ptr long ptr long)
@ stdcall FindFirstFileW(wstr ptr)
@ stub FindFirstVolumeA
@ st
ub FindFirstVolumeMountPointA
@ st
ub FindFirstVolumeMountPointW
@ st
dcall FindFirstVolumeMountPointA(str ptr long)
@ st
dcall FindFirstVolumeMountPointW(wstr ptr long)
@ stub FindFirstVolumeW
@ stdcall FindNextChangeNotification(long)
@ stdcall FindNextFileA(long ptr)
...
...
dlls/kernel32/volume.c
View file @
c56eafcb
...
...
@@ -1387,3 +1387,23 @@ BOOL WINAPI GetVolumePathNameW(LPCWSTR filename, LPWSTR volumepathname, DWORD bu
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* FindFirstVolumeMountPointA (KERNEL32.@)
*/
HANDLE
WINAPI
FindFirstVolumeMountPointA
(
LPCSTR
root
,
LPSTR
mount_point
,
DWORD
len
)
{
FIXME
(
"(%s, %p, %d), stub!
\n
"
,
debugstr_a
(
root
),
mount_point
,
len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
INVALID_HANDLE_VALUE
;
}
/***********************************************************************
* FindFirstVolumeMountPointW (KERNEL32.@)
*/
HANDLE
WINAPI
FindFirstVolumeMountPointW
(
LPCWSTR
root
,
LPWSTR
mount_point
,
DWORD
len
)
{
FIXME
(
"(%s, %p, %d), stub!
\n
"
,
debugstr_w
(
root
),
mount_point
,
len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
INVALID_HANDLE_VALUE
;
}
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