Commit 23e995e3 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

kernel32: Add stub implementations for FindFirstVolume{A, W}.

parent a0c3816d
...@@ -371,10 +371,10 @@ ...@@ -371,10 +371,10 @@
@ stdcall FindFirstFileExA(str long ptr long ptr long) @ stdcall FindFirstFileExA(str long ptr long ptr long)
@ stdcall FindFirstFileExW(wstr long ptr long ptr long) @ stdcall FindFirstFileExW(wstr long ptr long ptr long)
@ stdcall FindFirstFileW(wstr ptr) @ stdcall FindFirstFileW(wstr ptr)
@ stub FindFirstVolumeA @ stdcall FindFirstVolumeA(ptr long)
@ stdcall FindFirstVolumeMountPointA(str ptr long) @ stdcall FindFirstVolumeMountPointA(str ptr long)
@ stdcall FindFirstVolumeMountPointW(wstr ptr long) @ stdcall FindFirstVolumeMountPointW(wstr ptr long)
@ stub FindFirstVolumeW @ stdcall FindFirstVolumeW(ptr long)
@ stdcall FindNextChangeNotification(long) @ stdcall FindNextChangeNotification(long)
@ stdcall FindNextFileA(long ptr) @ stdcall FindNextFileA(long ptr)
@ stdcall FindNextFileW(long ptr) @ stdcall FindNextFileW(long ptr)
......
...@@ -1388,6 +1388,26 @@ BOOL WINAPI GetVolumePathNameW(LPCWSTR filename, LPWSTR volumepathname, DWORD bu ...@@ -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.@) * FindFirstVolumeMountPointA (KERNEL32.@)
*/ */
HANDLE WINAPI FindFirstVolumeMountPointA(LPCSTR root, LPSTR mount_point, DWORD len) HANDLE WINAPI FindFirstVolumeMountPointA(LPCSTR root, LPSTR mount_point, DWORD len)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment