kernel32: add stubs for DeleteVolumeMountPointA/W

Austin English austinenglish at gmail.com
Mon Mar 12 19:16:20 CDT 2012


http://bugs.winehq.org/show_bug.cgi?id=30011

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/kernel32/kernel32.spec b/dlls/kernel32/kernel32.spec
index e6baa38..774c799 100644
--- a/dlls/kernel32/kernel32.spec
+++ b/dlls/kernel32/kernel32.spec
@@ -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)
diff --git a/dlls/kernel32/volume.c b/dlls/kernel32/volume.c
index 5d7a07d..23bcca1 100644
--- a/dlls/kernel32/volume.c
+++ b/dlls/kernel32/volume.c
@@ -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;
+}


More information about the wine-patches mailing list