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.

37 lines
1.3 KiB

  1. //
  2. // MODULE: CommonREGCONNECT.H
  3. //
  4. // PURPOSE: read - write to the registry; common declarations for Online TS and Local TS,
  5. // which differ on many functions of this class
  6. //
  7. // COMPANY: Saltmine Creative, Inc. (206)-284-7511 [email protected]
  8. //
  9. // AUTHOR: Oleg Kalosha, Joe Mabel
  10. //
  11. // ORIGINAL DATE: 8-24-98 in Online TS. This file abstracted 1-19-98
  12. //
  13. // NOTES:
  14. // 1. This file should be included only in the .cpp files that instantiate CAPGTSRegConnector
  15. //
  16. // Version Date By Comments
  17. //--------------------------------------------------------------------
  18. // V3.1 01-19-98 JM branch out version exclusively for Local TS
  19. #ifndef _INCLUDE_COMMONREGCONNECT_H_
  20. #define _INCLUDE_COMMONREGCONNECT_H_
  21. // registry value names
  22. //
  23. #define FULLRESOURCE_STR _T("FullPathToResource")
  24. #define VROOTPATH_STR _T("VrootPathToDLL")
  25. #define MAX_THREADS_STR _T("MaximumThreads")
  26. #define THREADS_PER_PROCESSOR_STR _T("ThreadsPerProcessor")
  27. #define MAX_WORK_QUEUE_ITEMS_STR _T("MaximumWorkQueueItems")
  28. #define COOKIE_LIFE_IN_MINS_STR _T("HTTPCookieExpirationInMins")
  29. #define RELOAD_DELAY_STR _T("RefreshDelay")
  30. #define DETAILED_EVENT_LOGGING_STR _T("DetailedEventLogging")
  31. #define LOG_FILE_DIR_STR _T("LogFileDirectory")
  32. #define SNIFF_AUTOMATIC_STR _T("AutomaticSniffing")
  33. #define SNIFF_MANUAL_STR _T("ManualSniffing")
  34. #endif //_INCLUDE_COMMONREGCONNECT_H_