Removed some more trailing whitespace.
[wine] / dlls / setupapi / devinst.c
1 /*
2  * SetupAPI device installer
3  *
4  * Copyright 2000 Andreas Mohr for Codeweavers
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 "windef.h"
22 #include "winbase.h"
23 #include "setupx16.h"
24 #include "wine/debug.h"
25 #include "setupapi.h"
26
27 WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
28
29 /***********************************************************************
30  *              DiGetClassDevs (SETUPX.304)
31  * Return a list of installed system devices.
32  * Uses HKLM\\ENUM to list devices.
33  */
34 RETERR16 WINAPI DiGetClassDevs16(LPLPDEVICE_INFO16 lplpdi,
35                                  LPCSTR lpszClassName, HWND16 hwndParent, INT16 iFlags)
36 {
37     LPDEVICE_INFO16 lpdi;
38
39     FIXME("(%p, '%s', %04x, %04x), semi-stub.\n",
40           lplpdi, lpszClassName, hwndParent, iFlags);
41     lpdi = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(DEVICE_INFO16));
42     lpdi->cbSize = sizeof(DEVICE_INFO16);
43     *lplpdi = lpdi;
44     return OK;
45 }
46
47 BOOL WINAPI SetupDiGetDeviceInterfaceDetailA(
48       HDEVINFO DeviceInfoSet,
49       PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData,
50       PSP_DEVICE_INTERFACE_DETAIL_DATAA DeviceInterfaceDetailData,
51       DWORD DeviceInterfaceDetailDataSize,
52       PDWORD RequiredSize,
53       PSP_DEVINFO_DATA DeviceInfoData )
54 {
55     FIXME("\n");
56     return FALSE;
57 }
58
59 BOOL WINAPI SetupDiGetDeviceInterfaceDetailW(
60       HDEVINFO DeviceInfoSet,
61       PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData,
62       PSP_DEVICE_INTERFACE_DETAIL_DATAW DeviceInterfaceDetailData,
63       DWORD DeviceInterfaceDetailDataSize,
64       PDWORD RequiredSize,
65       PSP_DEVINFO_DATA DeviceInfoData )
66 {
67     FIXME("\n");
68     return FALSE;
69 }
70
71 BOOL WINAPI SetupDiEnumDeviceInterfaces(
72        HDEVINFO DeviceInfoSet,
73        PSP_DEVINFO_DATA DeviceInfoData,
74        CONST GUID * InterfaceClassGuid,
75        DWORD MemberIndex,
76        PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
77 {
78     FIXME("\n");
79     return FALSE;
80 }
81
82 HDEVINFO WINAPI SetupDiGetClassDevsA(
83        CONST GUID *class,
84        LPCSTR enumstr,
85        HWND parent,
86        DWORD flags)
87 {
88     FIXME("%s %s %04x %08lx\n",debugstr_guid(class),enumstr,parent,flags);
89
90     return NULL;
91 }
92
93 BOOL WINAPI SetupDiEnumDeviceInfo(
94         HDEVINFO  devinfo,
95         DWORD  index,
96         PSP_DEVINFO_DATA info)
97 {
98     FIXME("%p %ld %p\n", devinfo, index, info );
99
100     if(info==NULL)
101         return FALSE;
102     if(info->cbSize < sizeof *info)
103         return FALSE;
104
105     return FALSE;
106 }
107
108 BOOL WINAPI SetupDiDestroyDeviceInfoList( HDEVINFO devinfo )
109 {
110     FIXME("%04lx\n", (DWORD)devinfo);
111     return FALSE;
112 }
113
114 BOOL WINAPI SetupDiGetDeviceRegistryPropertyA(
115         HDEVINFO  devinfo,
116         PSP_DEVINFO_DATA  DeviceInfoData,
117         DWORD   Property,
118         PDWORD  PropertyRegDataType,
119         PBYTE   PropertyBuffer,
120         DWORD   PropertyBufferSize,
121         PDWORD  RequiredSize)
122 {
123     FIXME("%04lx %p %ld %p %p %ld %p\n", (DWORD)devinfo, DeviceInfoData,
124         Property, PropertyRegDataType, PropertyBuffer, PropertyBufferSize,
125         RequiredSize);
126     return FALSE;
127 }
128