Microsoft Windows CE 3.0  

LoadMenu

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

This function loads the specified menu resource from the executable (.exe) file associated with an application instance.

HMENU
LoadMenu(
HINSTANCE
hInstance
,
LPCTSTR
lpMenuName
);

Parameters

hInstance
[in] Handle to the instance of the module containing the menu resource to be loaded.
lpMenuName
[in] Long pointer to a null-terminated string that contains the name of the menu resource. Alternatively, this parameter can consist of the resource identifier in the low-order word and zero in the high-order word. To create this value, use the MAKEINTRESOURCEmacro.

Return Values

The handle to the menu resource indicates success. NULL indicates failure. To get extended error information, call GetLastError.

Remarks

The DestroyMenufunction is used, before an application closes, to destroy the menu and free memory that the loaded menu occupied.

Windows CE versions 1.0 and 1.01 do not support cascading menus. Windows CE versions 2.0 and later support cascading menus.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 1.0 and later Winuser.h   Menu.lib
Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

DestroyMenu, GetLastError, MAKEINTRESOURCE