Update spec file.
[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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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 "winnls.h"
29 #include "winreg.h"
30 #include "setupapi.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
33
34 /***********************************************************************
35  *              TPWriteProfileString (SETUPX.62)
36  */
37 BOOL WINAPI TPWriteProfileString16( LPCSTR section, LPCSTR entry, LPCSTR string )
38 {
39     FIXME( "%s %s %s: stub\n", debugstr_a(section), debugstr_a(entry), debugstr_a(string) );
40     return TRUE;
41 }
42
43
44 /***********************************************************************
45  *              suErrorToIds  (SETUPX.61)
46  */
47 DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
48 {
49     FIXME( "%x %x: stub\n", w1, w2 );
50     return 0;
51 }
52
53 /***********************************************************************
54  *              SetupDiOpenClassRegKeyExW  (SETUPAPI.@)
55  *
56  * WINAPI in description not given
57  */
58 HKEY WINAPI SetupDiOpenClassRegKeyExW(const GUID* class, REGSAM access, DWORD flags, PCWSTR machine, PVOID reserved)
59 {
60   FIXME("\n");
61   return INVALID_HANDLE_VALUE;
62 }
63
64 /***********************************************************************
65  *              SetupDiGetClassDescriptionExW  (SETUPAPI.@)
66  */
67 BOOL WINAPI SetupDiGetClassDescriptionExW (const GUID* class, PWSTR desc, DWORD size, PDWORD required, PCWSTR machine, PVOID reserved)
68 {
69   FIXME("\n");
70   return FALSE;
71 }
72
73 /***********************************************************************
74  *              SetupDiClassNameFromGuidExW  (SETUPAPI.@)
75  */
76 BOOL WINAPI SetupDiClassNameFromGuidExW (const GUID* class, PWSTR desc, DWORD size, PDWORD required, PCWSTR machine, PVOID reserved)
77 {
78   FIXME("\n");
79   return FALSE;
80 }
81
82 /***********************************************************************
83  *              SetupDiBuildClassInfoListExW  (SETUPAPI.@)
84  */
85 BOOL WINAPI SetupDiBuildClassInfoListExW(DWORD flags, LPGUID list, DWORD size, PDWORD required,  LPCWSTR  machine, PVOID reserved)
86 {
87   FIXME("\n");
88   return FALSE;
89 }
90
91 /***********************************************************************
92  *              SetupDiGetDeviceInfoListDetailA  (SETUPAPI.@)
93  */
94 BOOL WINAPI SetupDiGetDeviceInfoListDetailA(HDEVINFO devinfo, PSP_DEVINFO_LIST_DETAIL_DATA_A devinfo_data )
95 {
96   FIXME("\n");
97   return FALSE;
98 }
99
100 /***********************************************************************
101  *              SetupDiGetDeviceInfoListDetailW  (SETUPAPI.@)
102  */
103 BOOL WINAPI SetupDiGetDeviceInfoListDetailW(HDEVINFO devinfo, PSP_DEVINFO_LIST_DETAIL_DATA_W devinfo_data )
104 {
105   FIXME("\n");
106   return FALSE;
107 }
108
109 /***********************************************************************
110  *              SetupDiCreateDeviceInfoListA (SETUPAPI.@)
111  */
112 HDEVINFO WINAPI SetupDiCreateDeviceInfoList(const GUID *class, HWND parend)
113 {
114   FIXME("\n");
115   return FALSE;
116 }
117
118 /***********************************************************************
119  *              SetupDiCreateDeviceInfoListExW  (SETUPAPI.@)
120  */
121 HDEVINFO WINAPI SetupDiCreateDeviceInfoListExW(const GUID *class, HWND parend , PCWSTR machine, PVOID reserved)
122 {
123   FIXME("\n");
124   return FALSE;
125 }
126
127 /***********************************************************************
128  *                (SETUPAPI.@)
129  *
130  * NO WINAPI in description given
131  */
132 HDEVINFO WINAPI SetupDiGetClassDevsExA(const GUID *class, PCSTR filter, HWND parent, DWORD flags, HDEVINFO deviceset, PCSTR machine, PVOID reserved)
133 {
134   FIXME("filter %s machine %s\n",debugstr_a(filter),debugstr_a(machine));
135   return FALSE;
136 }
137
138 /***********************************************************************
139  *                (SETUPAPI.@)
140  *
141  * NO WINAPI in description given
142  */
143 HDEVINFO WINAPI SetupDiGetClassDevsExW(const GUID *class, PCWSTR filter, HWND parent, DWORD flags, HDEVINFO deviceset, PCWSTR machine, PVOID reserved)
144 {
145   FIXME("\n");
146   return FALSE;
147 }
148
149 /***********************************************************************
150  *              SetupDiClassGuidsFromNameExW  (SETUPAPI.@)
151  */
152 BOOL WINAPI SetupDiClassGuidsFromNameExW(LPCWSTR class, LPGUID list, DWORD size, PDWORD required,  LPCWSTR  machine, PVOID reserved)
153 {
154   FIXME("\n");
155   return FALSE;
156 }
157
158 /***********************************************************************
159  *              CM_Connect_MachineW  (SETUPAPI.@)
160  */
161 DWORD WINAPI CM_Connect_MachineW(LPCWSTR name, void * machine)
162 {
163 #define  CR_SUCCESS       0x00000000
164 #define  CR_ACCESS_DENIED 0x00000033
165   FIXME("\n");
166   return  CR_ACCESS_DENIED;
167 }
168
169 /***********************************************************************
170  *              CM_Disconnect_Machine  (SETUPAPI.@)
171  */
172 DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
173 {
174   FIXME("\n");
175   return  CR_SUCCESS;
176
177 }
178
179 /***********************************************************************
180  *             CM_Get_Device_ID_ListA  (SETUPAPI.@)
181  */
182
183 DWORD WINAPI CM_Get_Device_ID_ListA(
184     PCSTR pszFilter, PCHAR Buffer, ULONG BufferLen, ULONG ulFlags )
185 {
186     FIXME("%p %p %ld %ld\n", pszFilter, Buffer, BufferLen, ulFlags );
187     memset(Buffer,0,2);
188     return CR_SUCCESS;
189 }
190
191
192 /***********************************************************************
193  *              SetupCopyOEMInfA  (SETUPAPI.@)
194  */
195 BOOL WINAPI SetupCopyOEMInfA(PCSTR sourceinffile, PCSTR sourcemedialoc,
196                             DWORD mediatype, DWORD copystyle, PSTR destinfname,
197                             DWORD destnamesize, PDWORD required,
198                             PSTR *destinfnamecomponent)
199 {
200   FIXME("stub: source %s location %s ...\n",sourceinffile, sourcemedialoc);
201   return FALSE;
202 }
203
204 /***********************************************************************
205  *              SetupGetInfInformationA    (SETUPAPI.@)
206  */
207 BOOL WINAPI SetupGetInfInformationA( LPCVOID InfSpec, DWORD SearchControl,
208                                      PSP_INF_INFORMATION ReturnBuffer,
209                                      DWORD ReturnBufferSize, PDWORD RequiredSize)
210 {
211     FIXME("(%p, %ld, %p, %ld, %p) Stub!\n",
212           InfSpec, SearchControl, ReturnBuffer, ReturnBufferSize, RequiredSize );
213     return TRUE;
214 }
215
216 /***********************************************************************
217  *              SetupInitializeFileLogW(SETUPAPI.@)
218  */
219 HANDLE WINAPI SetupInitializeFileLogW(LPWSTR LogFileName, DWORD Flags)
220 {
221     FIXME("Stub %s, 0x%lx\n",debugstr_w(LogFileName),Flags);
222     return INVALID_HANDLE_VALUE;
223 }
224
225 /***********************************************************************
226  *              SetupInitializeFileLogA(SETUPAPI.@)
227  */
228 HANDLE WINAPI SetupInitializeFileLogA(LPSTR LogFileName, DWORD Flags)
229 {
230     FIXME("Stub %s, 0x%lx\n",debugstr_a(LogFileName),Flags);
231     return INVALID_HANDLE_VALUE;
232 }
233
234 /***********************************************************************
235  *              SetupTerminateFileLog(SETUPAPI.@)
236  */
237 BOOL WINAPI SetupTerminateFileLog(HANDLE FileLogHandle)
238 {
239     FIXME ("Stub %p\n",FileLogHandle);
240     return TRUE;
241 }