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.

35 lines
969 B

  1. /****************************************************************************/
  2. // aoeapi.h
  3. //
  4. // RDP Order Encoder API functions.
  5. //
  6. // Copyright (C) 1997-2000 Microsoft Corporation
  7. /****************************************************************************/
  8. #ifndef _H_AOEAPI
  9. #define _H_AOEAPI
  10. /****************************************************************************/
  11. // OE_SHARED_DATA
  12. //
  13. // Transfer structure for values from WD to DD.
  14. /****************************************************************************/
  15. typedef struct tagOE_SHARED_DATA
  16. {
  17. // Set if the following members have valid data.
  18. BOOLEAN newCapsData;
  19. // TRUE if only solid and pattern brushes supported,
  20. BOOLEAN sendSolidPatternBrushOnly;
  21. // Send colors as indices not RGB.
  22. BOOLEAN colorIndices;
  23. // Array of order support flags.
  24. BYTE *orderSupported;
  25. } OE_SHARED_DATA, *POE_SHARED_DATA;
  26. #endif /* ndef _H_AOEAPI */