Use libwine and libwine_unicode directly from their build directory
[wine/multimedia.git] / include / setupapi.h
blobbd749a7f47e39ac025594dd4b67087061933b83b
1 /* Initial setupapi.h.
3 FIXME: Missing A LOT of definitions / declarations!
4 */
6 #ifndef __SETUPAPI__
7 #define __SETUPAPI__
9 /* Define type for handle to a loaded inf file */
10 typedef PVOID HINF;
12 /* Define type for handle to a device information set */
13 typedef PVOID HDEVINFO;
15 /* inf structure. */
16 typedef struct _INFCONTEXT
18 PVOID Inf;
19 PVOID CurrentInf;
20 UINT Section;
21 UINT Line;
22 } INFCONTEXT, *PINFCONTEXT;
24 /* Device Information structure (references a device instance that is a member
25 of a device information set) */
26 typedef struct _SP_DEVINFO_DATA
28 DWORD cbSize;
29 GUID ClassGuid;
30 DWORD DevInst; /* DEVINST handle */
31 DWORD Reserved;
32 } SP_DEVINFO_DATA, *PSP_DEVINFO_DATA;
34 #endif