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.
|
|
/****************************************************************************/ // ncmdisp.h
//
// RDP Cursor Manager display driver header
//
// Copyright (c) 1996-2000 Microsoft Corporation
/****************************************************************************/ #ifndef __NCMDISP_H
#define __NCMDISP_H
#include <acmapi.h>
#include <nddapi.h>
BOOL RDPCALL CM_DDInit(PDD_PDEV ppdev);
void RDPCALL CM_Update(void);
void RDPCALL CM_DDDisc(void);
void RDPCALL CM_DDTerm(void);
void RDPCALL CM_InitShm(void);
/****************************************************************************/ /* Name: CM_DDGetCursorStamp */ /* */ /* Purpose: Returns the current cursor stamp. */ /* */ /* Returns: Current cursor stamp. */ /****************************************************************************/ //__inline UINT32 RDPCALL CM_DDGetCursorStamp(void)
#define CM_DDGetCursorStamp() pddShm->cm.cmCursorStamp
#endif // !defined(__NCMDISP_H)
|