functiondiscoverycategories.h 1.2 KB

123456789101112131415161718192021222324252627282930
  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_FUNCTIONDISCOVERYCATEGORIES
  7. #define _INC_FUNCTIONDISCOVERYCATEGORIES
  8. #if (_WIN32_WINNT >= 0x0600)
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #define FCTN_CATEGORY_DEVICES /*Not used??*/
  13. #define FCTN_CATEGORY_NETBIOS L"Provider\\Microsoft.Networking.Netbios"
  14. #define FCTN_CATEGORY_NETWORKDEVICES L"Layered\\Microsoft.Networking.Devices"
  15. #define FCTN_CATEGORY_PNP L"Provider\\Microsoft.Base.PnP"
  16. #define FCTN_CATEGORY_PNPXASSOCIATION L"Provider\\Microsoft.PnPX.Association"
  17. #define FCTN_CATEGORY_PUBLICATION L"Provider\\Microsoft.Base.Publication"
  18. #define FCTN_CATEGORY_REGISTRY L"Provider\\Microsoft.Base.Registry"
  19. #define FCTN_CATEGORY_SSDP L"Provider\\Microsoft.Networking.SSDP"
  20. #define FCTN_CATEGORY_WCN L"Provider\\Microsoft.Networking.WCN"
  21. #define FCTN_CATEGORY_WSDISCOVERY L"Provider\\Microsoft.Networking.WSD"
  22. /* Magic Subcatagory defintions - http://msdn.microsoft.com/en-us/library/aa364815%28v=VS.85%29.aspx */
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif /*(_WIN32_WINNT >= 0x0600)*/
  27. #endif /*_INC_FUNCTIONDISCOVERYCONSTRAINTS*/