typedef struct { /* ddat */
unsigned short unused:12,
fResponse:1,
fRelease:1,
reserved:1,
fAckReq:1;
short cfFormat;
BYTE Value[1];
} DDEDATA;
The DDEDATA structure contains the data and information about the data sent as part of a WM_DDE_POKE message.
fResponse
Indicates whether the application receiving the WM_DDE_DATA message should acknowledge receipt of the data by sending a WM_DDE_ACK message. A value of TRUE indicates the application should send the acknowledgment.
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.
fAckReq
Indicates whether the data was sent in response to a WM_DDE_REQUEST message or a WM_DDE_ADVISE message. A value of TRUE indicates the data was sent in response to a WM_DDE_REQUEST.
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
WM_DDE_DATA