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.

49 lines
1008 B

  1. /*++
  2. Copyright (c) 1999-2000 Microsoft Corporation
  3. Module Name:
  4. TSRDPRemoteDesktop.h
  5. Abstract:
  6. TSRDP-Specific Defines
  7. Author:
  8. Tad Brockway 02/00
  9. Revision History:
  10. --*/
  11. #ifndef __TSRDPREMOTEDESKTOP__H__
  12. #define __TSRDPREMOTEDESKTOP__H__
  13. //
  14. // RD Virtual Channel Name
  15. // (must be exactly 7 characters)
  16. //
  17. #define TSRDPREMOTEDESKTOP_VC_CHANNEL TEXT("remdesk")
  18. #define TSRDPREMOTEDESKTOP_VC_CHANNEL_A "remdesk"
  19. //
  20. // Add-In Named Pipe Information
  21. //
  22. #define TSRDPREMOTEDESKTOP_PIPENAME TEXT("TSRDPRemoteDesktopPipe")
  23. #define TSRDPREMOTEDESKTOP_PIPEBUFSIZE 2048
  24. #define TSRDPREMOTEDESKTOP_PIPETIMEOUT (30 * 1000) /* 30 seconds */
  25. //
  26. // Virtual key and modifier to press to stop shadow (ctrl-*)
  27. // TODO: This should be passed to the client in the connection
  28. // parms for later compatibility issues.
  29. //
  30. #define TSRDPREMOTEDESKTOP_SHADOWVKEYMODIFIER 0x02
  31. #define TSRDPREMOTEDESKTOP_SHADOWVKEY VK_MULTIPLY
  32. #endif // __TSRDPREMOTEDESKTOP__H__