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
23e995e3
Commit
23e995e3
authored
Nov 18, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub implementations for FindFirstVolume{A, W}.
parent
a0c3816d
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 @
23e995e3
...
...
@@ -371,10 +371,10 @@
@ stdcall FindFirstFileExA(str long ptr long ptr long)
@ stdcall FindFirstFileExW(wstr long ptr long ptr long)
@ stdcall FindFirstFileW(wstr ptr)
@ st
ub FindFirstVolumeA
@ st
dcall FindFirstVolumeA(ptr long)
@ stdcall FindFirstVolumeMountPointA(str ptr long)
@ stdcall FindFirstVolumeMountPointW(wstr ptr long)
@ st
ub FindFirstVolumeW
@ st
dcall FindFirstVolumeW(ptr long)
@ stdcall FindNextChangeNotification(long)
@ stdcall FindNextFileA(long ptr)
@ stdcall FindNextFileW(long ptr)
...
...
dlls/kernel32/volume.c
View file @
23e995e3
...
...
@@ -1388,6 +1388,26 @@ BOOL WINAPI GetVolumePathNameW(LPCWSTR filename, LPWSTR volumepathname, DWORD bu
}
/***********************************************************************
* FindFirstVolumeA (KERNEL32.@)
*/
HANDLE
WINAPI
FindFirstVolumeA
(
LPSTR
volume
,
DWORD
len
)
{
FIXME
(
"(%p, %d), stub!
\n
"
,
volume
,
len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
INVALID_HANDLE_VALUE
;
}
/***********************************************************************
* FindFirstVolumeW (KERNEL32.@)
*/
HANDLE
WINAPI
FindFirstVolumeW
(
LPWSTR
volume
,
DWORD
len
)
{
FIXME
(
"(%p, %d), stub!
\n
"
,
volume
,
len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
INVALID_HANDLE_VALUE
;
}
/***********************************************************************
* FindFirstVolumeMountPointA (KERNEL32.@)
*/
HANDLE
WINAPI
FindFirstVolumeMountPointA
(
LPCSTR
root
,
LPSTR
mount_point
,
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