|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| ddeml.h
| Unicode
| No
| Platform Notes
| None
|
|
|
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)).
See Also
MONCBSTRUCT, MONCONVSTRUCT, MONERRSTRUCT, MONHSZSTRUCT, MONLINKSTRUCT, MONMSGSTRUCT
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|