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.
 
 
 
 
 
 

37 lines
1.3 KiB

/****************************************************************************/
// asdgafn.h
//
// Function prototypes for SDG API functions
//
// Copyright (C) 1996-2000 Microsoft Corporation
/****************************************************************************/
void RDPCALL SDG_Init(void);
void RDPCALL SDG_SendScreenDataArea(BYTE *, UINT32, PPDU_PACKAGE_INFO);
BOOL RDPCALL SDGSendSDARect(BYTE *, unsigned, PRECTL, BOOL, PPDU_PACKAGE_INFO,
SDG_ENCODE_CONTEXT *);
void RDPCALL SDGPrepareData(BYTE **, int, int, unsigned, unsigned);
/****************************************************************************/
// SDG_Term
/****************************************************************************/
void RDPCALL SDG_Term(void)
{
}
/****************************************************************************/
/* FUNCTION: SDG_ScreenDataIsWaiting */
/* */
/* Returns whether there is some Screen Data ready to be sent. */
/* RETURNS: TRUE if there is accumulated screen data ready to send. */
/****************************************************************************/
__inline BOOL RDPCALL SDG_ScreenDataIsWaiting()
{
return BA_BoundsAreWaiting();
}