The DDEML_MSG_HOOK_DATA structure contains information about a DDE message, and provides read access to the data referenced by the message. This structure is intended to be used by a DDE Management Library (DDEML) monitoring application.
typedef struct tagDDEML_MSG_HOOK_DATA { // dmhd
UINT uiLo;
UINT uiHi;
DWORD cbData;
DWORD Data[8];
} DDEML_MSG_HOOK_DATA;
Members
uiLo
Specifies the unpacked low-order word of the lParam parameter associated with the DDE message.
uiHi
Specifies the unpacked high-order word of the lParam parameter associated with the DDE message.
cbData
Specifies the amount, in bytes, of data being passed with the message. This value can be greater than 32.
Data
Contains the first 32 bytes of data being passed with the message
(8 * sizeof(DWORD)).
See Also
MONCBSTRUCT, MONCONVSTRUCT, MONERRSTRUCT, MONHSZSTRUCT, MONLINKSTRUCT, MONMSGSTRUCT