setupapi: Win64 printf format warning fixes.
[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 "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  *              SetupDiGetDeviceInfoListDetailA  (SETUPAPI.@)
55  */
56 BOOL WINAPI SetupDiGetDeviceInfoListDetailA(HDEVINFO devinfo, PSP_DEVINFO_LIST_DETAIL_DATA_A devinfo_data )
57 {
58   FIXME("\n");
59   return FALSE;
60 }
61
62 /***********************************************************************
63  *              SetupDiGetDeviceInfoListDetailW  (SETUPAPI.@)
64  */
65 BOOL WINAPI SetupDiGetDeviceInfoListDetailW(HDEVINFO devinfo, PSP_DEVINFO_LIST_DETAIL_DATA_W devinfo_data )
66 {
67   FIXME("\n");
68   return FALSE;
69 }
70
71 /***********************************************************************
72  *                (SETUPAPI.@)
73  *
74  * NO WINAPI in description given
75  */
76 HDEVINFO WINAPI SetupDiGetClassDevsExA(const GUID *class, PCSTR filter, HWND parent, DWORD flags, HDEVINFO deviceset, PCSTR machine, PVOID reserved)
77 {
78   FIXME("filter %s machine %s\n",debugstr_a(filter),debugstr_a(machine));
79   return FALSE;
80 }
81
82 /***********************************************************************
83  *              CM_Connect_MachineW  (SETUPAPI.@)
84  */
85 DWORD WINAPI CM_Connect_MachineW(LPCWSTR name, void * machine)
86 {
87 #define  CR_SUCCESS       0x00000000
88 #define  CR_ACCESS_DENIED 0x00000033
89   FIXME("\n");
90   return  CR_ACCESS_DENIED;
91 }
92
93 /***********************************************************************
94  *              CM_Disconnect_Machine  (SETUPAPI.@)
95  */
96 DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
97 {
98   FIXME("\n");
99   return  CR_SUCCESS;
100
101 }
102
103 /***********************************************************************
104  *             CM_Get_Device_ID_ListA  (SETUPAPI.@)
105  */
106
107 DWORD WINAPI CM_Get_Device_ID_ListA(
108     PCSTR pszFilter, PCHAR Buffer, ULONG BufferLen, ULONG ulFlags )
109 {
110     FIXME("%p %p %d %d\n", pszFilter, Buffer, BufferLen, ulFlags );
111     memset(Buffer,0,2);
112     return CR_SUCCESS;
113 }
114
115
116 /***********************************************************************
117  *              SetupCopyOEMInfA  (SETUPAPI.@)
118  */
119 BOOL WINAPI SetupCopyOEMInfA(PCSTR sourceinffile, PCSTR sourcemedialoc,
120                             DWORD mediatype, DWORD copystyle, PSTR destinfname,
121                             DWORD destnamesize, PDWORD required,
122                             PSTR *destinfnamecomponent)
123 {
124   FIXME("stub: source %s location %s ...\n", debugstr_a(sourceinffile),
125         debugstr_a(sourcemedialoc));
126   return FALSE;
127 }
128
129 /***********************************************************************
130  *      SetupCopyOEMInfW  (SETUPAPI.@)
131  */
132 BOOL WINAPI SetupCopyOEMInfW(PCWSTR sourceinffile, PCWSTR sourcemedialoc,
133                 DWORD mediatype, DWORD copystyle, PWSTR destinfname,
134                 DWORD destnamesize, PDWORD required,
135                 PWSTR *destinfnamecomponent)
136 {
137   FIXME("stub: source %s location %s ...\n", debugstr_w(sourceinffile),
138         debugstr_w(sourcemedialoc));
139   return FALSE;
140 }
141
142 /***********************************************************************
143  *      SetupGetSourceInfoA  (SETUPAPI.@)
144  */
145 BOOL WINAPI SetupGetSourceInfoA(HINF InfHandle, UINT SourceId, UINT InfoDesired,
146                 PSTR ReturnBuffer, DWORD ReturnBufferSize, LPDWORD RequiredSize)
147 {
148   FIXME("(%p, %d, %d, %p, %d, %p): stub\n", InfHandle, SourceId, InfoDesired,
149         ReturnBuffer, ReturnBufferSize, RequiredSize);
150   return FALSE;
151 }
152
153 /***********************************************************************
154  *      SetupGetSourceInfoW  (SETUPAPI.@)
155  */
156 BOOL WINAPI SetupGetSourceInfoW(HINF InfHandle, UINT SourceId, UINT InfoDesired,
157                 PWSTR ReturnBuffer, DWORD ReturnBufferSize, LPDWORD RequiredSize)
158 {
159   FIXME("(%p, %d, %d, %p, %d, %p): stub\n", InfHandle, SourceId, InfoDesired,
160         ReturnBuffer, ReturnBufferSize, RequiredSize);
161   return FALSE;
162 }
163
164 /***********************************************************************
165  *              SetupInitializeFileLogW(SETUPAPI.@)
166  */
167 HANDLE WINAPI SetupInitializeFileLogW(LPWSTR LogFileName, DWORD Flags)
168 {
169     FIXME("Stub %s, 0x%x\n",debugstr_w(LogFileName),Flags);
170     return INVALID_HANDLE_VALUE;
171 }
172
173 /***********************************************************************
174  *              SetupInitializeFileLogA(SETUPAPI.@)
175  */
176 HANDLE WINAPI SetupInitializeFileLogA(LPSTR LogFileName, DWORD Flags)
177 {
178     FIXME("Stub %s, 0x%x\n",debugstr_a(LogFileName),Flags);
179     return INVALID_HANDLE_VALUE;
180 }
181
182 /***********************************************************************
183  *              SetupTerminateFileLog(SETUPAPI.@)
184  */
185 BOOL WINAPI SetupTerminateFileLog(HANDLE FileLogHandle)
186 {
187     FIXME ("Stub %p\n",FileLogHandle);
188     return TRUE;
189 }
190
191 /***********************************************************************
192  *              RegistryDelnode(SETUPAPI.@)
193  */
194 BOOL WINAPI RegistryDelnode(DWORD x, DWORD y)
195 {
196     FIXME("%08x %08x: stub\n", x, y);
197     return FALSE;
198 }
199
200 /***********************************************************************
201  *      SetupCloseLog(SETUPAPI.@)
202  */
203 void WINAPI SetupCloseLog()
204 {
205     FIXME("() stub\n");
206 }
207
208 /***********************************************************************
209  *      SetupLogErrorW(SETUPAPI.@)
210  */
211 BOOL WINAPI SetupLogErrorW(PCWSTR MessageString, LogSeverity Severity)
212 {
213     FIXME("(%s, %d) stub\n", debugstr_w(MessageString), Severity);
214     return TRUE;
215 }
216
217 /***********************************************************************
218  *      SetupOpenLog(SETUPAPI.@)
219  */
220 BOOL WINAPI SetupOpenLog(BOOL Reserved)
221 {
222     FIXME("(%d) stub\n", Reserved);
223     return TRUE;
224 }