kernel32: Added a stub for FindVolumeMountPointClose.

This commit is contained in:
Chris Wulff 2007-10-30 20:02:26 -04:00 committed by Alexandre Julliard
parent 62e7be0ede
commit 8cf7cb32c5
2 changed files with 10 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}