Jump to content

WM_DDE_TERMINATE

From EDM2
Revision as of 02:11, 28 April 2025 by Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:WM_DDE_TERMINATE}} This message is posted by either application participating in a DDE conversation, to terminate that conversation. This message is always posted. ==Syntax== <pre> param1 HWND hwnd; Window handle of the sender.: param2 ULONG ulReserved; Reserved value, should be 0.: </pre> ==Parameters== ;hwnd (HWND) - input: Window handle of the sender. ;ulReserved (ULONG) - input: Reserved value, should be 0. ==Returns== ;ulRes...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This message is posted by either application participating in a DDE conversation, to terminate that conversation. This message is always posted.

Syntax

param1
HWND hwnd;      /* Window handle of the sender. */

param2
ULONG ulReserved; /* Reserved value, should be 0. */

Parameters

hwnd (HWND) - input
Window handle of the sender.
ulReserved (ULONG) - input
Reserved value, should be 0.

Returns

ulReserved (ULONG) - return
Reserved value, should be 0.

Remarks

Upon receiving this message, an application is expected to post a WM_DDE_ TERMINATE message in response.

Default Processing

None.