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.
|
|
/****************************************************************************/ /* acmdata.c */ /* */ /* Cursor Manager Data */ /* */ /* Copyright(c) Microsoft, PictureTel 1992-1997 */ /* Copyright (c) Microsoft 1997-1999 */ /****************************************************************************/
#include <ndcgdata.h>
/****************************************************************************/ // Capability storage for transfer to DD.
/****************************************************************************/ DC_DATA(unsigned, cmNewTxCacheSize, 0); DC_DATA(BOOLEAN, cmSendNativeColorDepth, FALSE); // New cursor protocol supported?
/****************************************************************************/ // Used to track whether we need to send a cursor packet.
/****************************************************************************/ DC_DATA(BOOLEAN, cmNeedToSendCursorShape, FALSE); DC_DATA(BOOLEAN, cmCursorHidden, FALSE); DC_DATA(UINT32, cmLastCursorStamp, 0);
|