2 * SetupAPI device installer
4 * Copyright 2000 Andreas Mohr for CodeWeavers
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
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(setupapi
);
30 /***********************************************************************
31 * DiGetClassDevs (SETUPX.304)
32 * Return a list of installed system devices.
33 * Uses HKLM\\ENUM to list devices.
35 RETERR16 WINAPI
DiGetClassDevs16(LPLPDEVICE_INFO16 lplpdi
,
36 LPCSTR lpszClassName
, HWND16 hwndParent
, INT16 iFlags
)
40 FIXME("(%p, '%s', %04x, %04x), semi-stub.\n",
41 lplpdi
, lpszClassName
, hwndParent
, iFlags
);
42 lpdi
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(DEVICE_INFO16
));
43 lpdi
->cbSize
= sizeof(DEVICE_INFO16
);
44 *lplpdi
= (LPDEVICE_INFO16
)MapLS(lpdi
);
48 /***********************************************************************
49 * DiBuildCompatDrvList (SETUPX.300)
51 RETERR16 WINAPI
DiBuildCompatDrvList16(LPDEVICE_INFO16 lpdi
)
53 FIXME("(%p): stub\n", lpdi
);
54 lpdi
->lpCompatDrvList
= NULL
;
58 /***********************************************************************
59 * DiBuildClassDrvList (SETUPX.301)
61 RETERR16 WINAPI
DiBuildClassDrvList16(LPDEVICE_INFO16 lpdi
)
63 FIXME("(%p): stub\n", lpdi
);
64 lpdi
->lpCompatDrvList
= NULL
;
68 /***********************************************************************
69 * DiCallClassInstaller (SETUPX.308)
71 RETERR16 WINAPI
DiCallClassInstaller16(DI_FUNCTION16 diFctn
, LPDEVICE_INFO16 lpdi
)
73 FIXME("(%x, %p): stub\n", diFctn
, lpdi
);
77 /***********************************************************************
78 * DiCreateDevRegKey (SETUPX.318)
80 RETERR16 WINAPI
DiCreateDevRegKey16(LPDEVICE_INFO16 lpdi
,
84 FIXME("(%p, %p, %x, %s, %x): stub\n", lpdi
, p2
, w3
, debugstr_a(s4
), w5
);
88 /***********************************************************************
89 * DiDeleteDevRegKey (SETUPX.344)
91 RETERR16 WINAPI
DiDeleteDevRegKey16(LPDEVICE_INFO16 lpdi
, INT16 iFlags
)
93 FIXME("(%p, %x): stub\n", lpdi
, iFlags
);
97 /***********************************************************************
98 * DiCreateDeviceInfo (SETUPX.303)
100 RETERR16 WINAPI
DiCreateDeviceInfo16(LPLPDEVICE_INFO16 lplpdi
,
101 LPCSTR lpszDescription
, DWORD dnDevnode
,
102 HKEY16 hkey
, LPCSTR lpszRegsubkey
,
103 LPCSTR lpszClassName
, HWND16 hwndParent
)
105 LPDEVICE_INFO16 lpdi
;
106 FIXME("(%p %s %08x %x %s %s %x): stub\n", lplpdi
,
107 debugstr_a(lpszDescription
), dnDevnode
, hkey
,
108 debugstr_a(lpszRegsubkey
), debugstr_a(lpszClassName
), hwndParent
);
109 lpdi
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(DEVICE_INFO16
));
110 lpdi
->cbSize
= sizeof(DEVICE_INFO16
);
111 strcpy(lpdi
->szClassName
, lpszClassName
);
112 lpdi
->hwndParent
= hwndParent
;
113 *lplpdi
= (LPDEVICE_INFO16
)MapLS(lpdi
);
117 /***********************************************************************
118 * DiDestroyDeviceInfoList (SETUPX.305)
120 RETERR16 WINAPI
DiDestroyDeviceInfoList16(LPDEVICE_INFO16 lpdi
)
122 FIXME("(%p): stub\n", lpdi
);
126 /***********************************************************************
127 * DiOpenDevRegKey (SETUPX.319)
129 RETERR16 WINAPI
DiOpenDevRegKey16(LPDEVICE_INFO16 lpdi
,
130 LPHKEY16 lphk
,INT16 iFlags
)
132 FIXME("(%p %p %d): stub\n", lpdi
, lphk
, iFlags
);