Leaked source code of windows server 2003
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.

38 lines
1.4 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 2000
  5. //
  6. // File: strings.h
  7. //
  8. // Contents: Global strings that will be needed throughout this project
  9. //
  10. // History: 06-Sep-2000 JeffJon Created
  11. //
  12. //
  13. //--------------------------------------------------------------------------
  14. #ifndef _STRINGS_H_
  15. #define _STRINGS_H_
  16. static const BSTR g_bstrLDAPProvider = L"LDAP://";
  17. static const BSTR g_bstrGCProvider = L"GC://";
  18. static const BSTR g_bstrRootDSE = L"RootDSE";
  19. static const BSTR g_bstrDefaultNCProperty = L"defaultNamingContext";
  20. static const BSTR g_bstrSchemaNCProperty = L"schemaNamingContext";
  21. static const BSTR g_bstrConfigNCProperty = L"configurationNamingContext";
  22. static const BSTR g_bstrGroupScopeLocal = L"l";
  23. static const BSTR g_bstrGroupScopeUniversal = L"u";
  24. static const BSTR g_bstrGroupScopeGlobal = L"g";
  25. static const BSTR g_bstrNever = L"NEVER";
  26. static const BSTR g_bstrYes = L"yes";
  27. static const BSTR g_bstrNo = L"no";
  28. // Other attributes
  29. static const BSTR g_bstrIDManagerReference = L"rIDManagerReference";
  30. static const BSTR g_bstrFSMORoleOwner = L"fSMORoleOwner";
  31. static const BSTR g_bstrDNSHostName = L"dNSHostName";
  32. #endif // _STRINGS_H_