|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| ddeml.h
| Unicode
| No
| Platform Notes
| None
|
|
|
MONMSGSTRUCT
The MONMSGSTRUCT structure contains information about a DDE message. A DDE monitoring
application can use this structure to obtain information about a DDE message that was
sent or posted.
typedef struct tagMONMSGSTRUCT { // mmst
UINT cb;
HWND hwndTo;
DWORD dwTime;
HANDLE hTask;
UINT wMsg;
WPARAM wParam;
LPARAM lParam;
DDEML_MSG_HOOK_DATA dmhd;
} MONMSGSTRUCT;
Members
cb
Specifies the structure's size, in bytes.
hwndTo
Identifies the window that receives the DDE message.
dwTime
Specifies the Windows time at which the message was sent or posted. Windows
time is the number of milliseconds that have elapsed since the system was booted.
hTask
Identifies the task (application instance) containing the window that receives
the DDE message.
wMsg
Specifies the identifier of the DDE message.
wParam
Specifies the wParam parameter of the DDE message.
lParam
Specifies the lParam parameter of the DDE message.
dmhd
Specifies a DDEML_MSG_HOOK_DATA structure that contains additional information about the DDE message.
See Also
DDEML_MSG_HOOK_DATA, MONCBSTRUCT, MONCONVSTRUCT, MONERRSTRUCT, MONHSZSTRUCT, MONLINKSTRUCT
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 Programmer's Reference (win32.hlp)
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
|