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.

50 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. drconfig.h
  5. Abstract:
  6. Configurable Parameter Names for RDP Device Redirection
  7. Use ProcObj::GetDWordParameter() and ProcObj::GetStringParameter()
  8. to fetch values.
  9. Author:
  10. Tad Brockway (tadb) 28-June-1999
  11. Revision History:
  12. --*/
  13. #ifndef __DRCONFIG_H__
  14. #define __DRCONFIG_H__
  15. // Value for disabling device redirection
  16. #define RDPDR_DISABLE_DR_PARAM _T("DisableDeviceRedirection")
  17. #define RDPDR_DISABLE_DR_PARAM_DEFAULT FALSE
  18. // Log file name. No file logging is performed if this registry value
  19. // is not present or is invalid.
  20. #define RDPDR_LOGFILE_PARAM _T("LogFileName")
  21. #define RDPDR_LOGFILE_PARAM_DEFAULT _T("")
  22. // Number of MAX COM Port when Scanning for Client COM Ports to Redirect.
  23. #define RDPDR_COM_PORT_MAX_PARAM _T("COMPortMax")
  24. #define RDPDR_COM_PORT_MAX_PARAM_DEFAULT 32
  25. // Number of MAX LPT Port when Scanning for Client LPT Ports to Redirect.
  26. #define RDPDR_LPT_PORT_MAX_PARAM _T("LPTPortMax")
  27. #define RDPDR_LPT_PORT_MAX_PARAM_DEFAULT 10
  28. // Mask for tracing device-specific transaction information.
  29. #define RDPDR_DEVICE_TRACE_MASK_PARAM _T("DeviceTraceMask")
  30. #define RDPDR_DEVICE_TRACE_MASK_PARAM_DEFAULT 0x0
  31. #endif