DDEPOKE

2.x

#include <dde.h>

typedef struct tagDDEPOKE {  /* ddepok */
    WORD  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 nonzero value specifies 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_BITMAP CF_DCF_OEMTEXT CF_DCF_PALETTE CF_DCF_PENDATA CF_DCF_SYLK CF_DCF_TEXT CF_METAFILEPICT CF_OEMTEXT CF_PALETTE CF_PENDATA CF_SYLK CF_TEXT CF_TIFF

Value

Contains the data. The size of this array depends on the value of the cfFormat member.

See Also

WM_DDE_POKE