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

  1. /****************************************************************************/
  2. // asdgafn.h
  3. //
  4. // Function prototypes for SDG API functions
  5. //
  6. // Copyright (C) 1996-2000 Microsoft Corporation
  7. /****************************************************************************/
  8. void RDPCALL SDG_Init(void);
  9. void RDPCALL SDG_SendScreenDataArea(BYTE *, UINT32, PPDU_PACKAGE_INFO);
  10. BOOL RDPCALL SDGSendSDARect(BYTE *, unsigned, PRECTL, BOOL, PPDU_PACKAGE_INFO,
  11. SDG_ENCODE_CONTEXT *);
  12. void RDPCALL SDGPrepareData(BYTE **, int, int, unsigned, unsigned);
  13. /****************************************************************************/
  14. // SDG_Term
  15. /****************************************************************************/
  16. void RDPCALL SDG_Term(void)
  17. {
  18. }
  19. /****************************************************************************/
  20. /* FUNCTION: SDG_ScreenDataIsWaiting */
  21. /* */
  22. /* Returns whether there is some Screen Data ready to be sent. */
  23. /* RETURNS: TRUE if there is accumulated screen data ready to send. */
  24. /****************************************************************************/
  25. __inline BOOL RDPCALL SDG_ScreenDataIsWaiting()
  26. {
  27. return BA_BoundsAreWaiting();
  28. }