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.

32 lines
1.6 KiB

  1. /****************************************************************************/
  2. /* acpcdata.c */
  3. /* */
  4. /* RDP Capabilities Coordinator Data */
  5. /* */
  6. /* Copyright(c) Microsoft, PictureTel 1992-1996 */
  7. /* Copyright(c) Microsoft 1997-1999 */
  8. /****************************************************************************/
  9. #include <ndcgdata.h>
  10. #ifdef DC_DEBUG
  11. DC_DATA(BOOLEAN, cpcLocalCombinedCapsQueried, FALSE);
  12. #endif
  13. /****************************************************************************/
  14. /* The local combined capabilities which were registered using */
  15. /* CPC_RegisterCapabilities */
  16. /****************************************************************************/
  17. DC_DATA(PTS_COMBINED_CAPABILITIES, cpcLocalCombinedCaps, NULL);
  18. /****************************************************************************/
  19. /* The remote combined capabilities which have been received. These are */
  20. /* indexed by local personID - 1. */
  21. /****************************************************************************/
  22. DC_DATA_ARRAY_NULL(PTS_COMBINED_CAPABILITIES, cpcRemoteCombinedCaps,
  23. SC_DEF_MAX_PARTIES, NULL);
  24. // Local capabilities buffer.
  25. DC_DATA_ARRAY_UNINIT(BYTE, cpcLocalCaps, CPC_MAX_LOCAL_CAPS_SIZE);