Module: wine Branch: master Commit: 8cf7cb32c5bd57126397766c14621b27a3a92559 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8cf7cb32c5bd57126397766c14...
Author: Chris Wulff crwulff@rochester.rr.com Date: Tue Oct 30 20:02:26 2007 -0400
kernel32: Added a stub for FindVolumeMountPointClose.
---
dlls/kernel32/kernel32.spec | 2 +- dlls/kernel32/volume.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/kernel32.spec b/dlls/kernel32/kernel32.spec index 1032b01..fe98670 100644 --- a/dlls/kernel32/kernel32.spec +++ b/dlls/kernel32/kernel32.spec @@ -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) diff --git a/dlls/kernel32/volume.c b/dlls/kernel32/volume.c index 0f4c5da..8d3251e 100644 --- a/dlls/kernel32/volume.c +++ b/dlls/kernel32/volume.c @@ -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; +}