This function destroys the specified menu and frees any memory that the menu occupies.
At a Glance
Header file: | Winuser.h |
Windows CE versions: | 1.0 and later |
Syntax
BOOL DestroyMenu(HMENU hMenu);
Parameters
hMenu
[in] Handle to the menu to be destroyed.
Return Values
Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.
Remarks
Before closing, an application must use the DestroyMenu function to destroy a menu not assigned to a window. A menu that is assigned to a window is automatically destroyed when the application closes.
See Also