1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 09:18:56 +00:00

Added stubs for GetVolumePathName(A,W).

This commit is contained in:
Marcus Meissner 2005-06-02 10:30:44 +00:00 committed by Alexandre Julliard
parent 2b6e7dad58
commit 590aaaf454
2 changed files with 22 additions and 2 deletions

View File

@ -526,8 +526,8 @@
@ stdcall GetVolumeInformationW(wstr ptr long ptr ptr ptr ptr long)
@ stub GetVolumeNameForVolumeMountPointA
@ stdcall GetVolumeNameForVolumeMountPointW(wstr long long)
@ stub GetVolumePathNameA
@ stub GetVolumePathNameW
@ stdcall GetVolumePathNameA(str ptr long)
@ stdcall GetVolumePathNameW(wstr ptr long)
@ stdcall GetWindowsDirectoryA(ptr long)
@ stdcall GetWindowsDirectoryW(ptr long)
@ stub GetWriteWatch

View File

@ -1357,3 +1357,23 @@ BOOL WINAPI GetDiskFreeSpaceA( LPCSTR root, LPDWORD cluster_sectors,
if (root && !(rootW = FILE_name_AtoW( root, FALSE ))) return FALSE;
return GetDiskFreeSpaceW( rootW, cluster_sectors, sector_bytes, free_clusters, total_clusters );
}
/***********************************************************************
* GetVolumePathNameA (KERNEL32.@)
*/
BOOL WINAPI GetVolumePathNameA(LPCSTR filename, LPSTR volumepathname, DWORD buflen)
{
FIXME("(%s, %p, %ld), stub!\n", debugstr_a(filename), volumepathname, buflen);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* GetVolumePathNameW (KERNEL32.@)
*/
BOOL WINAPI GetVolumePathNameW(LPCWSTR filename, LPWSTR volumepathname, DWORD buflen)
{
FIXME("(%s, %p, %ld), stub!\n", debugstr_w(filename), volumepathname, buflen);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}