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
35 lines
969 B
/****************************************************************************/
|
|
// aoeapi.h
|
|
//
|
|
// RDP Order Encoder API functions.
|
|
//
|
|
// Copyright (C) 1997-2000 Microsoft Corporation
|
|
/****************************************************************************/
|
|
#ifndef _H_AOEAPI
|
|
#define _H_AOEAPI
|
|
|
|
|
|
/****************************************************************************/
|
|
// OE_SHARED_DATA
|
|
//
|
|
// Transfer structure for values from WD to DD.
|
|
/****************************************************************************/
|
|
typedef struct tagOE_SHARED_DATA
|
|
{
|
|
// Set if the following members have valid data.
|
|
BOOLEAN newCapsData;
|
|
|
|
// TRUE if only solid and pattern brushes supported,
|
|
BOOLEAN sendSolidPatternBrushOnly;
|
|
|
|
// Send colors as indices not RGB.
|
|
BOOLEAN colorIndices;
|
|
|
|
// Array of order support flags.
|
|
BYTE *orderSupported;
|
|
} OE_SHARED_DATA, *POE_SHARED_DATA;
|
|
|
|
|
|
|
|
#endif /* ndef _H_AOEAPI */
|
|
|