disable the device if the user selects "Do not show this dialog anymore". However...
[reactos.git] / reactos / lib / newdev / newdev.h
1 #include <windows.h>
2 #include <commctrl.h>
3 #include <regstr.h>
4 #include <setupapi.h>
5 #include <cfgmgr32.h>
6 #include <tchar.h>
7
8 #include <stdio.h>
9
10 #include "resource.h"
11
12 ULONG DbgPrint(PCH Format,...);
13
14 typedef struct _DEVINSTDATA
15 {
16 HFONT hTitleFont;
17 PBYTE buffer;
18 DWORD requiredSize;
19 DWORD regDataType;
20 HWND hDialog;
21 HDEVINFO hDevInfo;
22 SP_DEVINFO_DATA devInfoData;
23 SP_DRVINFO_DATA drvInfoData;
24 } DEVINSTDATA, *PDEVINSTDATA;
25
26 #define WM_SEARCH_FINISHED (WM_USER + 10)