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.

62 lines
2.1 KiB

  1. //*********************************************************************
  2. //* Microsoft Windows **
  3. //* Copyright (c) 1994-1998 Microsoft Corporation
  4. //*********************************************************************
  5. //
  6. // OHARESTR.H - string defines for O'Hare components
  7. //
  8. //
  9. // HISTORY:
  10. //
  11. // 3/10/95 jeremys Created.
  12. //
  13. #ifndef _OHARESTR_H_
  14. #define _OHARESTR_H_
  15. // path to RNA values (under HKEY_CURRENT_USER)
  16. #define REGSTR_PATH_REMOTEACCESS "RemoteAccess"
  17. // string value under HKCU\REGSTR_PATH_REMOTEACCESS that contains name of
  18. // connectoid used to connect to internet
  19. #define REGSTR_VAL_INTERNETPROFILE "InternetProfile"
  20. #define REGSTR_VAL_BKUPINTERNETPROFILE "BackupInternetProfile"
  21. // path to global internet settings (also under HKEY_CURRENT_USER)
  22. #define REGSTR_PATH_INTERNET_SETTINGS REGSTR_PATH_SETUP "\\Internet Settings"
  23. // values under HKCY\REGSTR_PATH_INTERNET_SETTINGS
  24. // 4-byte REG_BINARY, autodialing is enabled if this value is present and
  25. // non-zero, disabled otherwise
  26. #define REGSTR_VAL_ENABLEAUTODIAL "EnableAutodial"
  27. #define REGSTR_VAL_ENABLEAUTODISCONNECT "EnableAutodisconnect"
  28. #define REGSTR_VAL_ENABLESECURITYCHECK "EnableSecurityCheck"
  29. // 4-byte REG_BINARY containing number of minutes of idle time to allow
  30. // before autodisconnect. Autodisconnect is disabled if this value is zero
  31. // or not present.
  32. #define REGSTR_VAL_DISCONNECTIDLETIME "DisconnectIdleTime"
  33. // class name for window to receive Winsock activity messages
  34. #define AUTODIAL_MONITOR_CLASS_NAME "MS_AutodialMonitor"
  35. // name of connectoid-specific autodial handler dll and function
  36. #define REGSTR_VAL_AUTODIALDLLNAME "AutodialDllName"
  37. #define REGSTR_VAL_AUTODIALFCNNAME "AutodialFcnName"
  38. // proxy settings
  39. #define REGSTR_VAL_PROXYENABLE "ProxyEnable"
  40. #define REGSTR_VAL_PROXYSERVER "ProxyServer"
  41. #define REGSTR_VAL_PROXYOVERRIDE "ProxyOverride"
  42. // access medium (modem, LAN, [etc?])
  43. #define REGSTR_VAL_ACCESSMEDIUM "AccessMedium"
  44. // access type (MSN, other)
  45. #define REGSTR_VAL_ACCESSTYPE "AccessType"
  46. #endif // _OHARESTR_H_