ole32: We do need to implement Commit/Revert for non-root storage.
[wine] / dlls / setupapi / stubs.c
1 /*
2  * SetupAPI stubs
3  *
4  * Copyright 2000 James Hatheway
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include <stdarg.h>
22
23 #include "wine/debug.h"
24 #include "windef.h"
25 #include "winbase.h"
26 #include "wingdi.h"
27 #include "winuser.h"
28 #include "winreg.h"
29 #include "cfgmgr32.h"
30 #include "setupapi.h"
31 #include "winnls.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
34
35 /***********************************************************************
36  *              CM_Connect_MachineA  (SETUPAPI.@)
37  */
38 CONFIGRET WINAPI CM_Connect_MachineA(PCSTR name, PHMACHINE machine)
39 {
40   FIXME("(%s %p) stub\n", name, machine);
41   return CR_ACCESS_DENIED;
42 }
43
44 /***********************************************************************
45  *              CM_Connect_MachineW  (SETUPAPI.@)
46  */
47 CONFIGRET WINAPI CM_Connect_MachineW(PCWSTR name, PHMACHINE machine)
48 {
49   FIXME("\n");
50   return  CR_ACCESS_DENIED;
51 }
52
53 /***********************************************************************
54  *              CM_Create_DevNodeA  (SETUPAPI.@)
55  */
56 CONFIGRET WINAPI CM_Create_DevNodeA(PDEVINST pdnDevInst, DEVINSTID_A pDeviceID, DEVINST dnParent, ULONG ulFlags)
57 {
58   FIXME("(%p %s 0x%08x 0x%08x) stub\n", pdnDevInst, pDeviceID, dnParent, ulFlags);
59   return CR_SUCCESS;
60 }
61
62 /***********************************************************************
63  *              CM_Create_DevNodeW  (SETUPAPI.@)
64  */
65 CONFIGRET WINAPI CM_Create_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID, DEVINST dnParent, ULONG ulFlags)
66 {
67   FIXME("(%p %s 0x%08x 0x%08x) stub\n", pdnDevInst, debugstr_w(pDeviceID), dnParent, ulFlags);
68   return CR_SUCCESS;
69 }
70
71 /***********************************************************************
72  *              CM_Disconnect_Machine  (SETUPAPI.@)
73  */
74 CONFIGRET WINAPI CM_Disconnect_Machine(HMACHINE handle)
75 {
76   FIXME("\n");
77   return  CR_SUCCESS;
78
79 }
80
81 /***********************************************************************
82  *             CM_Get_Device_ID_ListA  (SETUPAPI.@)
83  */
84 CONFIGRET WINAPI CM_Get_Device_ID_ListA(
85     PCSTR pszFilter, PCHAR Buffer, ULONG BufferLen, ULONG ulFlags )
86 {
87     FIXME("%s %p %d 0x%08x\n", debugstr_a(pszFilter), Buffer, BufferLen, ulFlags);
88
89     if (BufferLen >= 2) Buffer[0] = Buffer[1] = 0;
90     return CR_SUCCESS;
91 }
92
93 /***********************************************************************
94  *             CM_Get_Device_ID_ListW  (SETUPAPI.@)
95  */
96 CONFIGRET WINAPI CM_Get_Device_ID_ListW(
97     PCWSTR pszFilter, PWCHAR Buffer, ULONG BufferLen, ULONG ulFlags )
98 {
99     FIXME("%s %p %d 0x%08x\n", debugstr_w(pszFilter), Buffer, BufferLen, ulFlags);
100
101     if (BufferLen >= 2) Buffer[0] = Buffer[1] = 0;
102     return CR_SUCCESS;
103 }
104
105 /***********************************************************************
106  *              CM_Get_Parent (SETUPAPI.@)
107  */
108 DWORD WINAPI CM_Get_Parent(PDEVINST pdnDevInst, DEVINST dnDevInst, ULONG ulFlags)
109 {
110     FIXME("%p 0x%08x 0x%08x stub\n", pdnDevInst, dnDevInst, ulFlags);
111     *pdnDevInst = dnDevInst;
112     return CR_SUCCESS;
113 }
114
115 /***********************************************************************
116  *              SetupInitializeFileLogW(SETUPAPI.@)
117  */
118 HSPFILELOG WINAPI SetupInitializeFileLogW(LPCWSTR LogFileName, DWORD Flags)
119 {
120     FIXME("Stub %s, 0x%x\n",debugstr_w(LogFileName),Flags);
121     return INVALID_HANDLE_VALUE;
122 }
123
124 /***********************************************************************
125  *              SetupInitializeFileLogA(SETUPAPI.@)
126  */
127 HSPFILELOG WINAPI SetupInitializeFileLogA(LPCSTR LogFileName, DWORD Flags)
128 {
129     FIXME("Stub %s, 0x%x\n",debugstr_a(LogFileName),Flags);
130     return INVALID_HANDLE_VALUE;
131 }
132
133 /***********************************************************************
134  *              SetupTerminateFileLog(SETUPAPI.@)
135  */
136 BOOL WINAPI SetupTerminateFileLog(HANDLE FileLogHandle)
137 {
138     FIXME ("Stub %p\n",FileLogHandle);
139     return TRUE;
140 }
141
142 /***********************************************************************
143  *              RegistryDelnode(SETUPAPI.@)
144  */
145 BOOL WINAPI RegistryDelnode(DWORD x, DWORD y)
146 {
147     FIXME("%08x %08x: stub\n", x, y);
148     return FALSE;
149 }
150
151 /***********************************************************************
152  *      SetupCloseLog(SETUPAPI.@)
153  */
154 void WINAPI SetupCloseLog(void)
155 {
156     FIXME("() stub\n");
157 }
158
159 /***********************************************************************
160  *      SetupLogErrorW(SETUPAPI.@)
161  */
162 BOOL WINAPI SetupLogErrorW(LPCWSTR MessageString, LogSeverity Severity)
163 {
164     FIXME("(%s, %d) stub\n", debugstr_w(MessageString), Severity);
165     return TRUE;
166 }
167
168 /***********************************************************************
169  *      SetupOpenLog(SETUPAPI.@)
170  */
171 BOOL WINAPI SetupOpenLog(BOOL Reserved)
172 {
173     FIXME("(%d) stub\n", Reserved);
174     return TRUE;
175 }
176
177 /***********************************************************************
178  *      SetupPromptReboot(SETUPAPI.@)
179  */
180 INT WINAPI SetupPromptReboot( HSPFILEQ file_queue, HWND owner, BOOL scan_only )
181 {
182     FIXME("%p, %p, %d\n", file_queue, owner, scan_only);
183     return 0;
184 }
185
186 /***********************************************************************
187  *      SetupSetSourceListA (SETUPAPI.@)
188  */
189 BOOL WINAPI SetupSetSourceListA(DWORD flags, PCSTR *list, UINT count)
190 {
191     FIXME("0x%08x %p %d\n", flags, list, count);
192     return FALSE;
193 }
194
195 /***********************************************************************
196  *      SetupSetSourceListW (SETUPAPI.@)
197  */
198 BOOL WINAPI SetupSetSourceListW(DWORD flags, PCWSTR *list, UINT count)
199 {
200     FIXME("0x%08x %p %d\n", flags, list, count);
201     return FALSE;
202 }
203
204 /***********************************************************************
205  *      SetupDiGetINFClassA (SETUPAPI.@)
206  */
207 BOOL WINAPI SetupDiGetINFClassA(PCSTR inf, LPGUID class_guid, PSTR class_name,
208         DWORD size, PDWORD required_size)
209 {
210     FIXME("%s %p %p %d %p\n", debugstr_a(inf), class_guid, class_name, size, required_size);
211     return FALSE;
212 }
213
214 /***********************************************************************
215  *      SetupDiGetINFClassW (SETUPAPI.@)
216  */
217 BOOL WINAPI SetupDiGetINFClassW(PCWSTR inf, LPGUID class_guid, PWSTR class_name,
218         DWORD size, PDWORD required_size)
219 {
220     FIXME("%s %p %p %d %p\n", debugstr_w(inf), class_guid, class_name, size, required_size);
221     return FALSE;
222 }
223
224 /***********************************************************************
225  *      SetupDiDestroyClassImageList (SETUPAPI.@)
226  */
227 BOOL WINAPI SetupDiDestroyClassImageList(PSP_CLASSIMAGELIST_DATA ClassListImageData)
228 {
229     FIXME("(%p) stub\n", ClassListImageData);
230     return TRUE;
231 }
232
233 /***********************************************************************
234  *      SetupDiGetClassImageList (SETUPAPI.@)
235  */
236 BOOL WINAPI SetupDiGetClassImageList(PSP_CLASSIMAGELIST_DATA ClassImageListData)
237 {
238     FIXME("(%p) stub\n", ClassImageListData);
239     return FALSE;
240 }
241
242 /***********************************************************************
243  *      SetupDiGetClassImageList (SETUPAPI.@)
244  */
245 BOOL WINAPI SetupDiGetClassImageIndex(PSP_CLASSIMAGELIST_DATA ClassImageListData, const GUID *class, PINT index)
246 {
247     FIXME("%p %p %p\n", ClassImageListData, class, index);
248     return FALSE;
249 }
250
251 /***********************************************************************
252  *      CM_Locate_DevNodeA (SETUPAPI.@)
253  */
254 CONFIGRET WINAPI CM_Locate_DevNodeA(PDEVINST pdnDevInst, DEVINSTID_A pDeviceID, ULONG ulFlags)
255 {
256     FIXME("%p %s 0x%08x: stub\n", pdnDevInst, debugstr_a(pDeviceID), ulFlags);
257
258     return CR_FAILURE;
259 }
260
261 /***********************************************************************
262  *      CM_Locate_DevNodeW (SETUPAPI.@)
263  */
264 CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID, ULONG ulFlags)
265 {
266     FIXME("%p %s 0x%08x: stub\n", pdnDevInst, debugstr_w(pDeviceID), ulFlags);
267
268     return CR_FAILURE;
269 }
270
271 /***********************************************************************
272  *      CM_Locate_DevNode_ExA (SETUPAPI.@)
273  */
274 CONFIGRET WINAPI CM_Locate_DevNode_ExA(PDEVINST pdnDevInst, DEVINSTID_A pDeviceID, ULONG ulFlags, HMACHINE hMachine)
275 {
276     FIXME("%p %s 0x%08x %p: stub\n", pdnDevInst, debugstr_a(pDeviceID), ulFlags, hMachine);
277
278     return CR_FAILURE;
279 }
280
281 /***********************************************************************
282  *      CM_Locate_DevNode_ExW (SETUPAPI.@)
283  */
284 CONFIGRET WINAPI CM_Locate_DevNode_ExW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID, ULONG ulFlags, HMACHINE hMachine)
285 {
286     FIXME("%p %s 0x%08x %p: stub\n", pdnDevInst, debugstr_w(pDeviceID), ulFlags, hMachine);
287
288     return CR_FAILURE;
289 }
290
291 /***********************************************************************
292  *      CM_Get_Device_Interface_List_Size_ExA (SETUPAPI.@)
293  */
294 CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExA(PULONG len, LPGUID class, DEVINSTID_A id,
295                                                        ULONG flags, HMACHINE machine)
296 {
297     FIXME("%p %p %s 0x%08x %p: stub\n", len, class, debugstr_a(id), flags, machine);
298     return CR_FAILURE;
299 }
300
301 /***********************************************************************
302  *      CM_Get_Device_Interface_List_Size_ExW (SETUPAPI.@)
303  */
304 CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExW(PULONG len, LPGUID class, DEVINSTID_W id,
305                                                        ULONG flags, HMACHINE machine)
306 {
307     FIXME("%p %p %s 0x%08x %p: stub\n", len, class, debugstr_w(id), flags, machine);
308     return CR_FAILURE;
309 }
310
311 /***********************************************************************
312  *      CM_Enumerate_Classes (SETUPAPI.@)
313  */
314 CONFIGRET WINAPI CM_Enumerate_Classes(ULONG index, LPGUID class, ULONG flags)
315 {
316     FIXME("%u %p 0x%08x: stub\n", index, class, flags);
317     return CR_NO_SUCH_VALUE;
318 }