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.

49 lines
2.6 KiB

  1. /****************************************************************************/
  2. /* assiapi.h */
  3. /* */
  4. /* SaveScreenBits Interceptor API functions. */
  5. /* */
  6. /* Copyright(c) Microsoft, PictureTel 1992-1996 */
  7. /* Copyright(c) Data Connection 1996 */
  8. /* (C) 1997-1998 Microsoft Corp. */
  9. /****************************************************************************/
  10. #ifndef _H_ASSIAPI
  11. #define _H_ASSIAPI
  12. /****************************************************************************/
  13. /* Define the values that can be passed in the flags field of */
  14. /* SaveScreenBits. */
  15. /* */
  16. /* These should be defined in a Windows header - but they are not. In any */
  17. /* case they are referred to in generic code, so need to be defined here. */
  18. /****************************************************************************/
  19. #define SSB_SAVEBITS 0
  20. #define SSB_RESTOREBITS 1
  21. #define SSB_DISCARDSAVE 2
  22. /****************************************************************************/
  23. /* Structure: SSI_SHARED_DATA */
  24. /* */
  25. /* Description: Data shared between WD, DD in SSI */
  26. /****************************************************************************/
  27. typedef struct tagSSI_SHARED_DATA
  28. {
  29. /************************************************************************/
  30. /* Control flags that tell the DD what to do. */
  31. /************************************************************************/
  32. BOOLEAN resetInterceptor;
  33. BOOLEAN saveBitmapSizeChanged;
  34. /************************************************************************/
  35. /* Current and new (evaluated but as yet unimplemented) value of the */
  36. /* save bitmap size. */
  37. /************************************************************************/
  38. UINT32 sendSaveBitmapSize;
  39. UINT32 newSaveBitmapSize;
  40. } SSI_SHARED_DATA, *PSSI_SHARED_DATA;
  41. #endif /* _H_ASSIAPI */