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.

58 lines
2.3 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1992, Microsoft Corporation
  4. //
  5. // File: regkeys.h
  6. //
  7. // Contents: Defines for registry key names.
  8. // There are two specific hives of interest to DFS. One is
  9. // the Control\Cairo hive, shared with Security, from where
  10. // the cairo domain name of the machine is retrieved. The
  11. // other hive is the services\Dfs hive, from where the
  12. // DFS parameters are retrieved.
  13. //
  14. // Thus, there are two "roots" defined, each with the subkeys
  15. // under the roots, and the specific value names under each
  16. // subkey.
  17. //
  18. // Classes:
  19. //
  20. // Functions:
  21. //
  22. // History: 11 Sep 92 Milans Created
  23. //
  24. //-----------------------------------------------------------------------------
  25. #ifndef _REG_KEYS_
  26. #define _REG_KEYS_
  27. extern const PWSTR wszRegComputerNameRt; // Root sect for computer name
  28. extern const PWSTR wszRegComputerNameSubKey; // Subkey for computer name
  29. extern const PWSTR wszRegComputerNameValue; // Value name of computer name
  30. extern const PWSTR wszRegRootVolumes; // Root of the Dfs volume object store
  31. extern const PWSTR wszLocalVolumesSection; // Root key for local volumes
  32. // local volume.
  33. extern const PWSTR wszEntryType; // EntryType for local vol
  34. extern const PWSTR wszServiceType; // ServiceType for local vol
  35. extern const PWSTR wszProviderKey; // Subkey for providers
  36. extern const PWSTR wszDeviceName; // Value name for prov. name
  37. extern const PWSTR wszProviderId; // Value name for prov. id
  38. extern const PWSTR wszCapabilities; // Value name for prov. caps
  39. extern const PWSTR wszEntryPath; // EntryPath for local vol
  40. extern const PWSTR wszShortEntryPath; // ShortEntryPath for local vol
  41. extern const PWSTR wszStorageId; // StorageId for MachShare.
  42. extern const PWSTR wszShareName; // Sharename for local vol
  43. extern const PWSTR wszRegDfsDriver;
  44. extern const PWSTR wszRegDfsHost;
  45. extern const PWSTR wszIpCacheTimeout;
  46. extern const PWSTR wszDefaultTimeToLive;
  47. extern const PWSTR wszMaxReferrals;
  48. #endif // _REG_KEYS_