DDEPOKE

typedef struct { /* ddpk */

unsigned short unused:13,

fRelease:1,

fReserved:2;

short cfFormat;

BYTE Value[1];

} DDEPOKE;

The DDEPOKE structure contains the data and information about the data sent as part of a WM_DDE_POKE message.

Members

fRelease

Indicates if the application receiving the WM_DDE_POKE message should free the data. A value of TRUE indicates the data should be freed.

cfFormat

Specifies the format of the data. The format should be a standard or registered clipboard format. The following standard clipboard formats may be used:

CF_TEXT CF_BITMAP CF_METAFILEPICT CF_SYLK CF_DIF CF_TIFF CF_OEMTEXT CF_DIB CF_PALETTE

Value

Contains the data. The actual length of type of data depends on the value of the cfFormat member.

See Also

WM_DDE_POKE