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.

79 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1999-2000 Microsoft Corporation
  3. Module Name:
  4. RemoteDesktop
  5. Abstract:
  6. Remote Desktop Top-Level Include for Global Types and Defines
  7. Author:
  8. Tad Brockway 02/00
  9. Revision History:
  10. --*/
  11. #ifndef __REMOTEDESKTOP_H__
  12. #define __REMOTEDESKTOP_H__
  13. //
  14. // Disable tracing for free builds.
  15. //
  16. #if DBG
  17. #define TRC_CL TRC_LEVEL_DBG
  18. #define TRC_ENABLE_PRF
  19. #else
  20. #define TRC_CL TRC_LEVEL_DIS
  21. #undef TRC_ENABLE_PRF
  22. #endif
  23. //
  24. // Required for DCL Tracing
  25. //
  26. #define OS_WIN32
  27. #define TRC_GROUP TRC_GROUP_NETWORK
  28. #define DEBUG_MODULE DBG_MOD_ANY
  29. #include <adcgbase.h>
  30. #include <at120ex.h>
  31. #include <atrcapi.h>
  32. #include <adcgbase.h>
  33. #include <at120ex.h>
  34. //
  35. // Protocol Types
  36. //
  37. #define REMOTEDESKTOP_RESERVED_PROTOCOL_BASE 0x0
  38. #define REMOTEDESKTOP_TSRDP_PROTOCOL REMOTEDESKTOP_RESERVED_PROTOCOL_BASE+1
  39. #define REMOTEDESKTOP_NETMEETING_PROTOCOL REMOTEDESKTOP_RESERVED_PROTOCOL_BASE+2
  40. #define REMOTEDESKTOP_USERDEFINED_PROTOCOL_BASE 0x10
  41. //
  42. // Protocol Version Information
  43. //
  44. #define REMOTEDESKTOP_VERSION_MAJOR 1
  45. #if FEATURE_USERBLOBS
  46. #define REMOTEDESKTOP_VERSION_MINOR 2
  47. #else
  48. #define REMOTEDESKTOP_VERSION_MINOR 1
  49. #endif
  50. // GUID for TSRDP Client ActiveX Control
  51. //
  52. #define REMOTEDESKTOPRDPCLIENT_TEXTGUID _T("{F137E241-0092-4575-976A-D3E33980BB26}")
  53. #define REMOTEDESKTOPCLIENT_TEXTGUID _T("{B90D0115-3AEA-45D3-801E-93913008D49E}")
  54. #endif //__REMOTEDESKTOP_H__