1 /**
2  * This file has no copyright assigned and is placed in the Public Domain.
3  * This file is part of the mingw-w64 runtime package.
4  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5  */
6 #ifndef _INC_FUNCTIONDISCOVERYKEYS
7 #define _INC_FUNCTIONDISCOVERYKEYS
8 
9 #if (_WIN32_WINNT >= 0x0600)
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 /* More magic keys at  http://msdn.microsoft.com/en-us/library/aa364697%28v=VS.85%29.aspx */
15 
16 #define PNPX_DEVICECATEGORY_COMPUTER L"Computers"
17 #define PNPX_DEVICECATEGORY_INPUTDEVICE L"Input"
18 #define PNPX_DEVICECATEGORY_PRINTER L"Printers"
19 #define PNPX_DEVICECATEGORY_SCANNER L"Scanners"
20 #define PNPX_DEVICECATEGORY_FAX L"FAX"
21 #define PNPX_DEVICECATEGORY_MFP L"MFP"
22 #define PNPX_DEVICECATEGORY_CAMERA L"Cameras"
23 #define PNPX_DEVICECATEGORY_STORAGE L"Storage"
24 #define PNPX_DEVICECATEGORY_NETWORK_INFRASTRUCTURE L"NetworkInfrastructure"
25 #define PNPX_DEVICECATEGORY_DISPLAYS L"Displays"
26 #define PNPX_DEVICECATEGORY_MULTIMEDIA_DEVICE L"MediaDevices"
27 #define PNPX_DEVICECATEGORY_GAMING_DEVICE L"Gaming"
28 #define PNPX_DEVICECATEGORY_TELEPHONE L"Phones"
29 #define PNPX_DEVICECATEGORY_HOME_AUTOMATION_SYSTEM L"HomeAutomation"
30 #define PNPX_DEVICECATEGORY_HOME_SECURITY_SYSTEM L"HomeSecurity"
31 #define PNPX_DEVICECATEGORY_OTHER L"Other"
32 
33 #ifdef __cplusplus
34 }
35 #endif
36 #endif /*(_WIN32_WINNT >= 0x0600)*/
37 #endif /*_INC_FUNCTIONDISCOVERYKEYS*/
38