Commit 17264271 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add stubs for DeleteVolumeMountPointA/W.

parent f91c9cc4
......@@ -289,8 +289,8 @@
@ stdcall DeleteTimerQueue(long)
@ stdcall DeleteTimerQueueEx (long long)
@ stdcall DeleteTimerQueueTimer(long long long)
# @ stub DeleteVolumeMountPointA
# @ stub DeleteVolumeMountPointW
@ stdcall DeleteVolumeMountPointA(str)
@ stdcall DeleteVolumeMountPointW(wstr)
@ stdcall DeviceIoControl(long long ptr long ptr long ptr ptr)
@ stdcall DisableThreadLibraryCalls(long)
@ stdcall DisconnectNamedPipe(long)
......
......@@ -2058,3 +2058,21 @@ BOOL WINAPI FindVolumeMountPointClose(HANDLE h)
FIXME("(%p), stub!\n", h);
return FALSE;
}
/***********************************************************************
* DeleteVolumeMountPointA (KERNEL32.@)
*/
BOOL WINAPI DeleteVolumeMountPointA(LPCSTR mountpoint)
{
FIXME("(%s), stub!\n", debugstr_a(mountpoint));
return FALSE;
}
/***********************************************************************
* DeleteVolumeMountPointW (KERNEL32.@)
*/
BOOL WINAPI DeleteVolumeMountPointW(LPCWSTR mountpoint)
{
FIXME("(%s), stub!\n", debugstr_w(mountpoint));
return FALSE;
}
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