push cc8bc80451cc24f4d7cf75168b569f0ebfe19547
[wine/hacks.git] / dlls / setupapi / diskspace.c
blob07025bd5a9012c3a75ab6dfe1135f2b863fb6a94
1 /*
2 * SetupAPI DiskSpace functions
4 * Copyright 2004 CodeWeavers (Aric Stewart)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wingdi.h"
26 #include "winuser.h"
27 #include "winnls.h"
28 #include "winreg.h"
29 #include "setupapi.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
34 typedef struct {
35 WCHAR lpzName[20];
36 LONGLONG dwFreeSpace;
37 LONGLONG dwWantedSpace;
38 } DRIVE_ENTRY, *LPDRIVE_ENTRY;
40 typedef struct {
41 DWORD dwDriveCount;
42 DRIVE_ENTRY Drives[26];
43 } DISKSPACELIST, *LPDISKSPACELIST;
46 /***********************************************************************
47 * SetupCreateDiskSpaceListW (SETUPAPI.@)
49 HDSKSPC WINAPI SetupCreateDiskSpaceListW(PVOID Reserved1, DWORD Reserved2, UINT Flags)
51 WCHAR drives[255];
52 DWORD rc;
53 WCHAR *ptr;
54 LPDISKSPACELIST list=NULL;
56 rc = GetLogicalDriveStringsW(255,drives);
58 if (rc == 0)
59 return NULL;
61 list = HeapAlloc(GetProcessHeap(),0,sizeof(DISKSPACELIST));
63 list->dwDriveCount = 0;
65 ptr = drives;
67 while (*ptr)
69 DWORD type = GetDriveTypeW(ptr);
70 if (type == DRIVE_FIXED)
72 DWORD clusters;
73 DWORD sectors;
74 DWORD bytes;
75 DWORD total;
76 lstrcpyW(list->Drives[list->dwDriveCount].lpzName,ptr);
77 GetDiskFreeSpaceW(ptr,&sectors,&bytes,&clusters,&total);
78 list->Drives[list->dwDriveCount].dwFreeSpace = clusters * sectors *
79 bytes;
80 list->Drives[list->dwDriveCount].dwWantedSpace = 0;
81 list->dwDriveCount++;
83 ptr += lstrlenW(ptr) + 1;
85 return list;
89 /***********************************************************************
90 * SetupCreateDiskSpaceListA (SETUPAPI.@)
92 HDSKSPC WINAPI SetupCreateDiskSpaceListA(PVOID Reserved1, DWORD Reserved2, UINT Flags)
94 return SetupCreateDiskSpaceListW( Reserved1, Reserved2, Flags );
98 /***********************************************************************
99 * SetupAddInstallSectionToDiskSpaceListA (SETUPAPI.@)
101 BOOL WINAPI SetupAddInstallSectionToDiskSpaceListA(HDSKSPC DiskSpace,
102 HINF InfHandle, HINF LayoutInfHandle,
103 LPCSTR SectionName, PVOID Reserved1, UINT Reserved2)
105 FIXME ("Stub\n");
106 return TRUE;
109 /***********************************************************************
110 * SetupQuerySpaceRequiredOnDriveA (SETUPAPI.@)
112 BOOL WINAPI SetupQuerySpaceRequiredOnDriveA(HDSKSPC DiskSpace,
113 LPCSTR DriveSpec, LONGLONG* SpaceRequired,
114 PVOID Reserved1, UINT Reserved2)
116 WCHAR driveW[20];
117 unsigned int i;
118 LPDISKSPACELIST list = DiskSpace;
119 BOOL rc = FALSE;
120 static const WCHAR bkslsh[]= {'\\',0};
122 MultiByteToWideChar(CP_ACP,0,DriveSpec,-1,driveW,20);
124 lstrcatW(driveW,bkslsh);
126 TRACE("Looking for drive %s\n",debugstr_w(driveW));
128 for (i = 0; i < list->dwDriveCount; i++)
130 TRACE("checking drive %s\n",debugstr_w(list->Drives[i].lpzName));
131 if (lstrcmpW(driveW,list->Drives[i].lpzName)==0)
133 rc = TRUE;
134 *SpaceRequired = list->Drives[i].dwWantedSpace;
135 break;
139 return rc;
142 /***********************************************************************
143 * SetupDestroyDiskSpaceList (SETUPAPI.@)
145 BOOL WINAPI SetupDestroyDiskSpaceList(HDSKSPC DiskSpace)
147 LPDISKSPACELIST list = DiskSpace;
148 HeapFree(GetProcessHeap(),0,list);
149 return TRUE;