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.

55 lines
1.6 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1992, Microsoft Corporation
  4. //
  5. // File: regkeys.c
  6. //
  7. // Contents: constant registry strings
  8. //
  9. // Classes:
  10. //
  11. // Functions:
  12. //
  13. // History: 11 Sep 92 Milans created
  14. //
  15. //-----------------------------------------------------------------------------
  16. #include "registry.h"
  17. #include "regkeys.h"
  18. #include "dfsstr.h"
  19. #define REG_MACHINE L"\\REGISTRY\\MACHINE\\"
  20. const PWSTR wszRegRootVolumes =
  21. REG_MACHINE VOLUMES_DIR;
  22. const PWSTR wszLocalVolumesSection =
  23. REG_MACHINE REG_KEY_LOCAL_VOLUMES;
  24. const PWSTR wszRegDfsDriver =
  25. REG_MACHINE REG_KEY_DFSDRIVER;
  26. const PWSTR wszRegDfsHost =
  27. REG_MACHINE DFSHOST_DIR;
  28. const PWSTR wszEntryPath = REG_VALUE_ENTRY_PATH;
  29. const PWSTR wszShortEntryPath = REG_VALUE_SHORT_PATH;
  30. const PWSTR wszStorageId = REG_VALUE_STORAGE_ID;
  31. const PWSTR wszShareName = REG_VALUE_SHARE_NAME;
  32. const PWSTR wszEntryType = REG_VALUE_ENTRY_TYPE;
  33. const PWSTR wszServiceType = L"ServiceType";
  34. const PWSTR wszProviderKey = L"Providers";
  35. const PWSTR wszDeviceName = L"DeviceName";
  36. const PWSTR wszProviderId = L"ProvID";
  37. const PWSTR wszCapabilities = L"Capabilities";
  38. const PWSTR wszIpCacheTimeout = L"IpCacheTimeout";
  39. const PWSTR wszDefaultTimeToLive = REG_VALUE_TIMETOLIVE;
  40. const PWSTR wszRegComputerNameRt =
  41. REG_MACHINE L"SYSTEM\\CurrentControlSet\\Control\\ComputerName";
  42. const PWSTR wszRegComputerNameSubKey = L"ComputerName";
  43. const PWSTR wszRegComputerNameValue = L"ComputerName";
  44. const PWSTR wszMaxReferrals = L"DfsReferralLimit";