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.

27 lines
1.5 KiB

  1. /****************************************************************************/
  2. /* aimdata.c */
  3. /* */
  4. /* RDP Input manager global data */
  5. /* */
  6. /* Copyright(c) Microsoft, PictureTel 1993-1997 */
  7. /* (C) 1997-1999 Microsoft Corp. */
  8. /****************************************************************************/
  9. #include <ndcgdata.h>
  10. /****************************************************************************/
  11. // Key states for this WD (and therefore socket / client).
  12. /****************************************************************************/
  13. DC_DATA_ARRAY_NULL(BYTE, imKeyStates, IM_KEY_STATE_SIZE, NULL);
  14. /****************************************************************************/
  15. /* For tracking SetCursorPos */
  16. /****************************************************************************/
  17. DC_DATA(UINT32, imLastLowLevelMouseEventTime, 0);
  18. /****************************************************************************/
  19. /* Store the last known mouse position. */
  20. /****************************************************************************/
  21. DC_DATA_NULL(POINTL, imLastKnownMousePos, DC_STRUCT2(0,0));