|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| dde.h
| Unicode
| No
| Platform Notes
| None
|
|
|
WM_DDE_TERMINATE
A DDE application (client or server) posts a WM_DDE_TERMINATE message to
terminate a conversation.
WM_DDE_TERMINATE
wParam = (WPARAM) hwnd; // handle of posting window
lParam = 0; // not used, must be zero
Parameters
hwnd
Value of wParam. Identifies the client or server window posting the message.
Remarks
Posting
The client or server application posts the WM_DDE_TERMINATE message by calling
the PostMessage function, not the SendMessage function.
While waiting for confirmation of the termination, the posting application
should not post any other messages to the receiving application. If the sending
application receives messages (other than WM_DDE_TERMINATE) from the receiving
application, it should delete any atoms or shared memory objects accompanying the
messages, except hData objects associated with WM_DDE_POKE or WM_DDE_DATA messages that do not have
the fRelease flag set.
Receiving
The client or server application should respond by posting a WM_DDE_TERMINATE
message.
See Also
PostMessage, SendMessage, WM_DDE_DATA, WM_DDE_POKE
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
TMS Scripter Studio Pro components for Delphi/C++Builder
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
|