Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1997, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // iasdefs.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Declares various constants used by IAS.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 08/07/1997 Original version.
  16. // 12/19/1997 Added database string constants.
  17. // 05/20/1998 Removed attribute name constants.
  18. // 08/13/1998 Removed various string constants that weren't being used.
  19. //
  20. ///////////////////////////////////////////////////////////////////////////////
  21. #ifndef _IASDEFS_H_
  22. #define _IASDEFS_H_
  23. //////////
  24. // The name of the IAS Service.
  25. //////////
  26. #define IASServiceName L"IAS"
  27. //////////
  28. // The name of the IAS Program
  29. // Used for forming ProgID's of the format Program.Component.Version.
  30. //////////
  31. #define IASProgramName IASServiceName
  32. //////////
  33. // Macro to munge a component string literal into a full ProgID.
  34. //////////
  35. #define IAS_PROGID(component) IASProgramName L"." L#component
  36. //////////
  37. // Microsoft's Vendor ID
  38. //////////
  39. #define IAS_VENDOR_MICROSOFT 311
  40. #endif // _IASDEFS_H_