DDEML_MSG_HOOK_DATA

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)).

QuickInfo

  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Unsupported.
  Header: Declared in ddeml.h.

See Also

Dynamic Data Exchange Management Library Overview, Dynamic Data Exchange Management Structures, MONCBSTRUCT, MONCONVSTRUCT, MONERRSTRUCT, MONHSZSTRUCT, MONLINKSTRUCT, MONMSGSTRUCT