Leaked source code of windows server 2003
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.

46 lines
1.8 KiB

  1. //
  2. // MODULE: Registry.h
  3. //
  4. // PURPOSE: All of the registry keys and values for the LaunchServ are
  5. // defined here.
  6. //
  7. // PROJECT: Local Troubleshooter Launcher for the Device Manager
  8. //
  9. // COMPANY: Saltmine Creative, Inc. (206)-633-4743 [email protected]
  10. //
  11. // AUTHOR: Richard Meadows
  12. //
  13. // ORIGINAL DATE: 2-26-98
  14. //
  15. //
  16. // Version Date By Comments
  17. //--------------------------------------------------------------------
  18. // V0.1 - RM Original
  19. ///////////////////////
  20. // Registry Keys
  21. #define SZ_LAUNCHER_ROOT _T("SOFTWARE\\Microsoft\\TShoot\\Launcher")
  22. #define SZ_LAUNCHER_APP_ROOT _T("SOFTWARE\\Microsoft\\TShoot\\Launcher\\Applications")
  23. #define SZ_TSHOOT_ROOT _T("SOFTWARE\\Microsoft\\TShoot")
  24. // Registry Values
  25. #define SZ_GLOBAL_MAP_FILE _T("MapFile")
  26. #define SZ_GLOBAL_LAUNCHER_RES _T("ResourcePath") // The applications also use SZ_GLOBAL_LAUNCHER_RES for their map files.
  27. #define SZ_APPS_MAP_FILE _T("MapFile")
  28. #define SZ_TSHOOT_RES _T("FullPathToResource")
  29. #define SZ_DEFAULT_NETWORK _T("DefaultNetwork") // The dsc network that will be used if the mapping fails.
  30. #define SZ_DEFAULT_PAGE _T("DefaultPage") // The default web page
  31. // Define _HH_CHM for normal NT 5 release builds.
  32. // Undefine _HH_CHM to use with iexplore.exe on NT 4.
  33. #define _HH_CHM 1 // Don't need the full path to hh.exe, but iexplore.exe will not run without the full path.
  34. // The container that will use the ILaunchTS interface.
  35. #ifndef _HH_CHM
  36. #define SZ_CONTAINER_APP_KEY _T("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\IEXPLORE.EXE")
  37. #define SZ_CONTAINER_APP_VALUE _T("")
  38. #endif
  39. // These are NOT in registry
  40. // These are sniff related names
  41. #define SZ_SNIFF_SCRIPT_NAME _T("tssniffAsk.htm")
  42. #define SZ_SNIFF_SCRIPT_APPENDIX _T("_sniff.htm")