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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
34 /***********************************************************************
35 * TPWriteProfileString (SETUPX.62)
37 BOOL WINAPI TPWriteProfileString16( LPCSTR section, LPCSTR entry, LPCSTR string )
39 FIXME( "%s %s %s: stub\n", debugstr_a(section), debugstr_a(entry), debugstr_a(string) );
44 /***********************************************************************
45 * suErrorToIds (SETUPX.61)
47 DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
49 FIXME( "%x %x: stub\n", w1, w2 );
53 /***********************************************************************
54 * SetupDiOpenClassRegKeyExW (SETUPAPI.@)
56 * WINAPI in description not given
58 HKEY WINAPI SetupDiOpenClassRegKeyExW(LPGUID class, DWORD access, DWORD flags, LPCWSTR machine, PVOID reserved)
61 return INVALID_HANDLE_VALUE;
64 /***********************************************************************
65 * SetupDiGetClassDescriptionExW (SETUPAPI.@)
67 BOOL WINAPI SetupDiGetClassDescriptionExW (GUID* class, LPCWSTR desc, DWORD size, PDWORD required, LPCWSTR machine, PVOID reserved)
73 /***********************************************************************
74 * SetupDiClassNameFromGuidExW (SETUPAPI.@)
76 BOOL WINAPI SetupDiClassNameFromGuidExW (GUID* class, LPCWSTR desc, DWORD size, PDWORD required, LPCWSTR machine, PVOID reserved)
82 /***********************************************************************
83 * SetupDiBuildClassInfoListExW (SETUPAPI.@)
85 BOOL WINAPI SetupDiBuildClassInfoListExW(DWORD flags, LPGUID list, DWORD size, PDWORD required, LPCWSTR machine, PVOID reserved)
91 /***********************************************************************
92 * SetupDiGetDeviceInfoListDetailW (SETUPAPI.@)
94 BOOL WINAPI SetupDiGetDeviceInfoListDetailW(HDEVINFO devinfo, PSP_DEVINFO_DATA devinfo_data )
100 /***********************************************************************
101 * SetupDiCreateDeviceInfoListExW (SETUPAPI.@)
103 HDEVINFO WINAPI SetupDiCreateDeviceInfoListExW(LPGUID class, HWND parend, LPCWSTR machine, PVOID reserved)
109 /***********************************************************************
112 * NO WINAPI in description given
114 HDEVINFO WINAPI SetupDiGetClassDevsExW(LPGUID class, LPCWSTR filter, HWND parent, DWORD flags, HDEVINFO deviceset, LPCWSTR machine, PVOID reserved)
120 /***********************************************************************
121 * SetupDiClassGuidsFromNameExW (SETUPAPI.@)
123 BOOL WINAPI SetupDiClassGuidsFromNameExW(LPCWSTR class, LPGUID list, DWORD size, PDWORD required, LPCWSTR machine, PVOID reserved)
129 /***********************************************************************
130 * CM_Connect_MachineW (SETUPAPI.@)
132 DWORD WINAPI CM_Connect_MachineW(LPCWSTR name, void * machine)
134 #define CR_SUCCESS 0x00000000
135 #define CR_ACCESS_DENIED 0x00000033
137 return CR_ACCESS_DENIED;
140 /***********************************************************************
141 * CM_Disconnect_Machine (SETUPAPI.@)
143 DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
150 /***********************************************************************
151 * SetupCopyOEMInfA (SETUPAPI.@)
153 BOOL WINAPI SetupCopyOEMInfA(LPCSTR sourceinffile, LPCSTR sourcemedialoc,
154 DWORD mediatype, DWORD copystyle, LPSTR destinfname,
155 DWORD destnamesize, PDWORD required,
156 LPSTR destinfnamecomponent)
158 FIXME("stub: source %s location %s ...\n",sourceinffile, sourcemedialoc);
162 /***********************************************************************
163 * InstallHinfSection (SETUPAPI.@)
165 void WINAPI InstallHinfSection(HWND hwnd, HINSTANCE handle, LPCSTR cmdline, INT show)
167 FIXME("stub, hwnd %p, handle %p, cmdline %s\n", hwnd, handle, debugstr_a(cmdline));