DestroyWindow (Windows CE 5.0)

Send Feedback

This function destroys the specified window. The function sends a WM_DESTROY message to the window to deactivate it and removes the keyboard focus from it. The function also destroys the window's menu, destroys timers, removes clipboard ownership, and breaks the clipboard viewer chain (if the window is at the top of the viewer chain).

If the specified window is a parent or owner window, DestroyWindow automatically destroys the associated child or owned windows when it destroys the parent or owner window. The function first destroys child or owned windows, and then it destroys the parent or owner window.

DestroyWindow also destroys modeless dialog boxes created by the CreateDialog function.

BOOLDestroyWindow( HWNDhWnd );

Parameters

  • hWnd
    [in] Handle to the window to be destroyed.

Return Values

Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.

Remarks

The DestroyWindow function does not support the WM_PARENTNOTIFY message.

DestroyWindow destroys children of the specified window.

DestroyWindow does not flush the thread message queue.

Do not use DestroyWindow in one thread to destroy a window created by a different thread.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.

See Also

Windows Functions | CreateDialog | CreateWindow | CreateWindowEx | WM_DESTROY | Windows Functions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.