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.

34 lines
1.0 KiB

  1. #ifndef __SNAPINDEFINES_H__
  2. #define __SNAPINDEFINES_H__
  3. // File: SnapinDefines.h
  4. //
  5. // various snapin defines
  6. //
  7. // Copyright (c) 2000 Microsoft Corporation
  8. //
  9. // v-marfin Bug 61451
  10. //
  11. //
  12. // AuthTypes for the HttpProvider class
  13. #define AUTHTYPE_VALUE_NONE 0
  14. //#define AUTHTYPE_VALUE_ANONYMOUS 1
  15. #define AUTHTYPE_VALUE_BASIC 2
  16. #define AUTHTYPE_VALUE_NTLM 4
  17. #define AUTHTYPE_VALUE_KERBEROS 8
  18. #define AUTHTYPE_VALUE_DIGEST 16
  19. #define AUTHTYPE_VALUE_NEGOTIATE 32
  20. // In this particular case localization is not an issue.
  21. // The names of auth. methods are part of the http protocol
  22. // and don't need to be localized.
  23. #define AUTHTYPE_VALUE_NONE_STRING _T("None")
  24. #define AUTHTYPE_VALUE_BASIC_STRING _T("Clear Text (Basic)")
  25. #define AUTHTYPE_VALUE_NEGOTIATE_STRING _T("Windows Default (Negotiate)")
  26. #define AUTHTYPE_VALUE_NTLM_STRING _T("NTLM")
  27. #define AUTHTYPE_VALUE_DIGEST_STRING _T("Digest")
  28. #define AUTHTYPE_VALUE_KERBEROS_STRING _T("Kerberos")
  29. //#define AUTHTYPE_VALUE_ANONYMOUS_STRING _T("Anonymous")
  30. #endif // __SNAPINDEFINES_H__