Re: [PATCH] kernel32: Better stubs for SetVolumeMountPoint.
5 Nov
2012
5 Nov
'12
11:09 p.m.
Johannes Obermayr <johannesobermayr(a)gmx.de> writes:
+ /* Abort if already mounted */ + if (GetVolumeNameForVolumeMountPointW(path, (LPWSTR)volume, MAX_PATH)) + {
You can't do that.
+/************************************************************************ + * SetVolumeMountPointA (KERNEL32.@) + */ +BOOL WINAPI SetVolumeMountPointA(LPCSTR path, LPCSTR volume) +{ + FIXME("(%s, %s), stub!\n", debugstr_a(path), debugstr_a(volume)); + + return FALSE; +}
Please implement this by calling the W function. -- Alexandre Julliard julliard(a)winehq.org
4788
Age (days ago)
4788
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard