functiondiscoverykeys.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. #if (_WIN32_WINNT >= 0x0600)
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /* More magic keys at http://msdn.microsoft.com/en-us/library/aa364697%28v=VS.85%29.aspx */
  13. #define PNPX_DEVICECATEGORY_COMPUTER L"Computers"
  14. #define PNPX_DEVICECATEGORY_INPUTDEVICE L"Input"
  15. #define PNPX_DEVICECATEGORY_PRINTER L"Printers"
  16. #define PNPX_DEVICECATEGORY_SCANNER L"Scanners"
  17. #define PNPX_DEVICECATEGORY_FAX L"FAX"
  18. #define PNPX_DEVICECATEGORY_MFP L"MFP"
  19. #define PNPX_DEVICECATEGORY_CAMERA L"Cameras"
  20. #define PNPX_DEVICECATEGORY_STORAGE L"Storage"
  21. #define PNPX_DEVICECATEGORY_NETWORK_INFRASTRUCTURE L"NetworkInfrastructure"
  22. #define PNPX_DEVICECATEGORY_DISPLAYS L"Displays"
  23. #define PNPX_DEVICECATEGORY_MULTIMEDIA_DEVICE L"MediaDevices"
  24. #define PNPX_DEVICECATEGORY_GAMING_DEVICE L"Gaming"
  25. #define PNPX_DEVICECATEGORY_TELEPHONE L"Phones"
  26. #define PNPX_DEVICECATEGORY_HOME_AUTOMATION_SYSTEM L"HomeAutomation"
  27. #define PNPX_DEVICECATEGORY_HOME_SECURITY_SYSTEM L"HomeSecurity"
  28. #define PNPX_DEVICECATEGORY_OTHER L"Other"
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif /*(_WIN32_WINNT >= 0x0600)*/
  33. #endif /*_INC_FUNCTIONDISCOVERYKEYS*/