4 * Copyright 2000 James Hatheway
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
23 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
33 /***********************************************************************
34 * TPWriteProfileString (SETUPX.62)
36 BOOL WINAPI TPWriteProfileString16( LPCSTR section, LPCSTR entry, LPCSTR string )
38 FIXME( "%s %s %s: stub\n", debugstr_a(section), debugstr_a(entry), debugstr_a(string) );
43 /***********************************************************************
44 * suErrorToIds (SETUPX.61)
46 DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
48 FIXME( "%x %x: stub\n", w1, w2 );
52 /***********************************************************************
53 * CM_Connect_MachineW (SETUPAPI.@)
55 DWORD WINAPI CM_Connect_MachineW(LPCWSTR name, void * machine)
57 #define CR_SUCCESS 0x00000000
58 #define CR_ACCESS_DENIED 0x00000033
60 return CR_ACCESS_DENIED;
63 /***********************************************************************
64 * CM_Disconnect_Machine (SETUPAPI.@)
66 DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
73 /***********************************************************************
74 * CM_Get_Device_ID_ListA (SETUPAPI.@)
77 DWORD WINAPI CM_Get_Device_ID_ListA(
78 PCSTR pszFilter, PCHAR Buffer, ULONG BufferLen, ULONG ulFlags )
80 FIXME("%p %p %d %d\n", pszFilter, Buffer, BufferLen, ulFlags );
85 /***********************************************************************
86 * SetupInitializeFileLogW(SETUPAPI.@)
88 HSPFILELOG WINAPI SetupInitializeFileLogW(LPCWSTR LogFileName, DWORD Flags)
90 FIXME("Stub %s, 0x%x\n",debugstr_w(LogFileName),Flags);
91 return INVALID_HANDLE_VALUE;
94 /***********************************************************************
95 * SetupInitializeFileLogA(SETUPAPI.@)
97 HSPFILELOG WINAPI SetupInitializeFileLogA(LPCSTR LogFileName, DWORD Flags)
99 FIXME("Stub %s, 0x%x\n",debugstr_a(LogFileName),Flags);
100 return INVALID_HANDLE_VALUE;
103 /***********************************************************************
104 * SetupTerminateFileLog(SETUPAPI.@)
106 BOOL WINAPI SetupTerminateFileLog(HANDLE FileLogHandle)
108 FIXME ("Stub %p\n",FileLogHandle);
112 /***********************************************************************
113 * RegistryDelnode(SETUPAPI.@)
115 BOOL WINAPI RegistryDelnode(DWORD x, DWORD y)
117 FIXME("%08x %08x: stub\n", x, y);
121 /***********************************************************************
122 * SetupCloseLog(SETUPAPI.@)
124 void WINAPI SetupCloseLog(void)
129 /***********************************************************************
130 * SetupLogErrorW(SETUPAPI.@)
132 BOOL WINAPI SetupLogErrorW(LPCWSTR MessageString, LogSeverity Severity)
134 FIXME("(%s, %d) stub\n", debugstr_w(MessageString), Severity);
138 /***********************************************************************
139 * SetupOpenLog(SETUPAPI.@)
141 BOOL WINAPI SetupOpenLog(BOOL Reserved)
143 FIXME("(%d) stub\n", Reserved);
147 /***********************************************************************
148 * SetupPromptReboot(SETUPAPI.@)
150 INT WINAPI SetupPromptReboot( HSPFILEQ file_queue, HWND owner, BOOL scan_only )
152 FIXME("%p, %p, %d\n", file_queue, owner, scan_only);
156 /***********************************************************************
157 * SetupSetSourceListA (SETUPAPI.@)
159 BOOL WINAPI SetupSetSourceListA(DWORD flags, PCSTR *list, UINT count)
161 FIXME("0x%08x %p %d\n", flags, list, count);
165 /***********************************************************************
166 * SetupSetSourceListW (SETUPAPI.@)
168 BOOL WINAPI SetupSetSourceListW(DWORD flags, PCWSTR *list, UINT count)
170 FIXME("0x%08x %p %d\n", flags, list, count);
174 /***********************************************************************
175 * SetupDiGetINFClassA (SETUPAPI.@)
177 BOOL WINAPI SetupDiGetINFClassA(PCSTR inf, LPGUID class_guid, PSTR class_name,
178 DWORD size, PDWORD required_size)
180 FIXME("%s %p %p %d %p\n", debugstr_a(inf), class_guid, class_name, size, required_size);
184 /***********************************************************************
185 * SetupDiGetINFClassW (SETUPAPI.@)
187 BOOL WINAPI SetupDiGetINFClassW(PCWSTR inf, LPGUID class_guid, PWSTR class_name,
188 DWORD size, PDWORD required_size)
190 FIXME("%s %p %p %d %p\n", debugstr_w(inf), class_guid, class_name, size, required_size);