kernel32: Added a stub for FindVolumeMountPointClose.
This commit is contained in:
parent
62e7be0ede
commit
8cf7cb32c5
|
@ -387,7 +387,7 @@
|
|||
@ stdcall FindResourceExW(long wstr wstr long)
|
||||
@ stdcall FindResourceW(long wstr wstr)
|
||||
@ stub FindVolumeClose
|
||||
@ stub FindVolumeMountPointClose
|
||||
@ stdcall FindVolumeMountPointClose(ptr)
|
||||
@ stdcall FlushConsoleInputBuffer(long)
|
||||
@ stdcall FlushFileBuffers(long)
|
||||
@ stdcall FlushInstructionCache(long long long)
|
||||
|
|
|
@ -1406,3 +1406,12 @@ HANDLE WINAPI FindFirstVolumeMountPointW(LPCWSTR root, LPWSTR mount_point, DWORD
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return INVALID_HANDLE_VALUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* FindVolumeMountPointClose (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI FindVolumeMountPointClose(HANDLE h)
|
||||
{
|
||||
FIXME("(%p), stub!\n", h);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue