Re: kernel32: Implement and test GetVolumePathNamesForVolumeName. (try 2)

2011-03-16 Thread Alexandre Julliard
Hans Leidekker writes: > +for (i = 0; i < output->NumberOfMountPoints; i++) > +{ > +if (output->MountPoints[i].DeviceNameOffset) > +{ > +const WCHAR *device = (const WCHAR *)((const char *)output + > output->MountPoints[i].DeviceNameOffset); > +UIN

Re: kernel32: Implement and test GetVolumePathNamesForVolumeName.

2011-02-14 Thread Alexandre Julliard
Hans Leidekker writes: > BOOL WINAPI GetVolumePathNamesForVolumeNameW(LPCWSTR volumename, LPWSTR > volumepathname, DWORD buflen, PDWORD returnlen) > { > -FIXME("(%s, %p, %d, %p), stub!\n", debugstr_w(volumename), > volumepathname, buflen, returnlen); > -SetLastError(ERROR_CALL_NOT_IMP