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

virtdisk: Add DetachVirtualDisk stub.

parent 65211347
......@@ -4,7 +4,7 @@
@ stub CompactVirtualDisk
@ stub CreateVirtualDisk
@ stub DeleteVirtualDiskMetadata
@ stub DetachVirtualDisk
@ stdcall DetachVirtualDisk(ptr long long)
@ stub EnumerateVirtualDiskMetadata
@ stub ExpandVirtualDisk
@ stub GetAllAttachedVirtualDiskPhysicalPaths
......
......@@ -58,3 +58,9 @@ DWORD WINAPI OpenVirtualDisk(VIRTUAL_STORAGE_TYPE *type, const WCHAR *path, VIRT
return ERROR_CALL_NOT_IMPLEMENTED;
}
DWORD WINAPI DetachVirtualDisk(HANDLE handle, DETACH_VIRTUAL_DISK_FLAG flags, ULONG specific_flags)
{
FIXME("(%p, 0x%x, %d): stub\n", handle, flags, specific_flags);
return ERROR_INVALID_PARAMETER;
}
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