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. Copyright (c) 1992-1993 Microsoft Corporation
  3. Module Name:
  4. nwreg.h
  5. Abstract:
  6. Header which specifies the registry location and value names
  7. of the logon credential information written by the provider and
  8. read by the workstation service.
  9. Also contains helper routine prototypes.
  10. Author:
  11. Rita Wong (ritaw) 22-Mar-1993
  12. Revision History:
  13. --*/
  14. #ifndef _NWRNAMES_INCLUDED_
  15. #define _NWRNAMES_INCLUDED_
  16. #define NW_WORKSTATION_REGKEY L"System\\CurrentControlSet\\Services\\NWCWorkstation\\Parameters"
  17. #define NW_WORKSTATION_OPTION_REGKEY L"System\\CurrentControlSet\\Services\\NWCWorkstation\\Parameters\\Option"
  18. #define NW_INTERACTIVE_LOGON_REGKEY L"System\\CurrentControlSet\\Services\\NWCWorkstation\\Parameters\\InteractiveLogon" //Terminal Server Addition
  19. #define NW_SERVICE_LOGON_REGKEY L"System\\CurrentControlSet\\Services\\NWCWorkstation\\Parameters\\ServiceLogon"
  20. #define NW_WORKSTATION_GATEWAY_DRIVES L"System\\CurrentControlSet\\Services\\NWCWorkstation\\Drives"
  21. #define NW_WORKSTATION_GATEWAY_SHARES L"System\\CurrentControlSet\\Services\\NWCWorkstation\\Shares"
  22. #define NW_WORKSTATION_PROVIDER_PATH L"System\\CurrentControlSet\\Services\\NWCWorkstation\\networkprovider"
  23. #define NW_PROVIDER_VALUENAME L"Name"
  24. #define NW_CURRENTUSER_VALUENAME L"CurrentUser"
  25. #define NW_GATEWAYACCOUNT_VALUENAME L"GatewayAccount"
  26. #define NW_GATEWAY_ENABLE L"GatewayEnabled"
  27. #define NW_SERVER_VALUENAME L"PreferredServer"
  28. #define NW_NDS_SERVER_VALUENAME L"NdsPreferredServer"
  29. #define NW_LOGONSCRIPT_VALUENAME L"LogonScript"
  30. #define NW_WINSTATION_VALUENAME L"WinStation" //Terminal Server
  31. #define NW_SID_VALUENAME L"User" //Terminal Server
  32. #define NW_LOGONID_VALUENAME L"LogonID"
  33. #define NW_PRINTOPTION_VALUENAME L"PrintOption"
  34. #define NW_SYNCLOGONSCRIPT_VALUENAME L"ResetScriptFlag"
  35. #define NW_DEFAULTSERVER_VALUENAME L"DefaultLocation"
  36. #define NW_DEFAULTSCRIPTOPTIONS_VALUENAME L"DefaultScriptOptions"
  37. #define WINLOGON_REGKEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\WinLogon"
  38. #define SYNCLOGONSCRIPT_VALUENAME L"RunLogonScriptSync"
  39. #endif // _NWRNAMES_INCLUDED_