2000-11-06 21:24:43 +01:00
|
|
|
/* Initial setupapi.h.
|
|
|
|
|
|
|
|
FIXME: Missing A LOT of definitions / declarations!
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SETUPAPI__
|
|
|
|
#define __SETUPAPI__
|
|
|
|
|
2001-01-17 21:17:46 +01:00
|
|
|
#include "commctrl.h"
|
|
|
|
|
2000-11-06 21:24:43 +01:00
|
|
|
/* Define type for handle to a loaded inf file */
|
|
|
|
typedef PVOID HINF;
|
|
|
|
|
|
|
|
/* Define type for handle to a device information set */
|
|
|
|
typedef PVOID HDEVINFO;
|
|
|
|
|
2001-01-17 21:17:46 +01:00
|
|
|
/* Define type for setup file queue */
|
|
|
|
typedef PVOID HSPFILEQ;
|
|
|
|
|
2000-11-06 21:24:43 +01:00
|
|
|
/* inf structure. */
|
|
|
|
typedef struct _INFCONTEXT
|
|
|
|
{
|
|
|
|
PVOID Inf;
|
|
|
|
PVOID CurrentInf;
|
|
|
|
UINT Section;
|
|
|
|
UINT Line;
|
|
|
|
} INFCONTEXT, *PINFCONTEXT;
|
|
|
|
|
2001-02-12 02:29:08 +01:00
|
|
|
typedef UINT CALLBACK (*PSP_FILE_CALLBACK_A)( PVOID Context, UINT Notification,
|
2001-01-17 21:17:46 +01:00
|
|
|
UINT Param1, UINT Param2 );
|
2001-02-12 02:29:08 +01:00
|
|
|
typedef UINT CALLBACK (*PSP_FILE_CALLBACK_W)( PVOID Context, UINT Notification,
|
2001-01-17 21:17:46 +01:00
|
|
|
UINT Param1, UINT Param2 );
|
|
|
|
#define PSP_FILE_CALLBACK WINELIB_NAME_AW(PSP_FILE_CALLBACK_)
|
|
|
|
|
|
|
|
|
2000-11-06 21:24:43 +01:00
|
|
|
/* Device Information structure (references a device instance that is a member
|
|
|
|
of a device information set) */
|
|
|
|
typedef struct _SP_DEVINFO_DATA
|
|
|
|
{
|
|
|
|
DWORD cbSize;
|
|
|
|
GUID ClassGuid;
|
|
|
|
DWORD DevInst; /* DEVINST handle */
|
|
|
|
DWORD Reserved;
|
|
|
|
} SP_DEVINFO_DATA, *PSP_DEVINFO_DATA;
|
|
|
|
|
2001-01-17 21:17:46 +01:00
|
|
|
#endif /* __SETUPAPI__ */
|