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.

71 lines
2.1 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Windows NT Directory Service Property Pages
  4. //
  5. // Microsoft Windows
  6. // Copyright (C) Microsoft Corporation, 1992 - 1999
  7. //
  8. // File: strings.cxx
  9. //
  10. // Contents: String constants that don't need to be localized.
  11. //
  12. // History: 06-Jun-97 EricB created
  13. //
  14. //-----------------------------------------------------------------------------
  15. #include "pch.h"
  16. PWSTR g_wzLDAPPrefix = L"LDAP://";
  17. PWSTR g_wzLDAPProvider = L"LDAP";
  18. PWSTR g_wzWINNTPrefix = L"WinNT://";
  19. PWSTR g_wzPartitionsContainer = L"CN=Partitions,";
  20. PWSTR g_wzSidPathPrefix = L"<SID=";
  21. PWSTR g_wzSidPathSuffix = L">";
  22. PWSTR g_wzRootDSE = L"RootDSE";
  23. PWSTR g_wzConfigNamingContext = L"configurationNamingContext";
  24. PWSTR g_wzSchemaNamingContext = L"schemaNamingContext";
  25. PWSTR g_wzCRLF = L"\r\n";
  26. //
  27. // Class names:
  28. //
  29. PWSTR g_wzUser = L"user";
  30. PWSTR g_wzGroup = L"group";
  31. PWSTR g_wzContact = L"contact";
  32. PWSTR g_wzComputer = L"computer";
  33. PWSTR g_wzFPO = L"foreignSecurityPrincipal";
  34. #ifdef INETORGPERSON
  35. PWSTR g_wzInetOrgPerson = L"inetOrgPerson";
  36. #endif
  37. //
  38. // Attribute names:
  39. //
  40. PWSTR g_wzClass = L"class";
  41. PWSTR g_wzObjectClass = L"objectClass";
  42. PWSTR g_wzDescription = L"description"; // ADSTYPE_CASE_IGNORE_STRING
  43. PWSTR g_wzName = L"name"; // ADSTYPE_CASE_IGNORE_STRING
  44. PWSTR g_wzMemberAttr = L"member"; // ADSTYPE_DN_STRING
  45. PWSTR g_wzObjectSID = L"objectSid";
  46. PWSTR g_wzGroupType = L"groupType";
  47. PWSTR g_wzADsPath = L"ADsPath";
  48. PWSTR g_wzStreet = L"streetAddress";
  49. PWSTR g_wzPOB = L"postOfficeBox";
  50. PWSTR g_wzCity = L"l";
  51. PWSTR g_wzState = L"st";
  52. PWSTR g_wzZIP = L"postalCode";
  53. PWSTR g_wzCountryName = L"c";
  54. PWSTR g_wzCountryCode = L"countryCode";
  55. PWSTR g_wzTextCountry = L"co";
  56. PWSTR g_wzDN = L"distinguishedName";
  57. PWSTR g_wzUserAccountControl = L"userAccountControl";
  58. PWSTR g_wzAllowed = L"allowedAttributesEffective";
  59. PWSTR g_wzDomainMode = L"nTMixedDomain";
  60. PWSTR g_wzBehaviorVersion = L"msDS-Behavior-Version";
  61. PWSTR g_wzHasMasterNCs = L"hasMasterNCs";
  62. PWSTR g_wzA2D2 = L"msDS-AllowedToDelegateTo";
  63. PWSTR g_wzSPN = L"servicePrincipalName";
  64. PWSTR g_wzHost = L"HOST";
  65. PWSTR g_wzSPNMappings = L"sPNMappings";