LoadIcon (Windows CE 5.0)

Send Feedback

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

HICONLoadIcon(HINSTANCEhInstance, LPCTSTRlpIconName);

Parameters

  • hInstance
    [in] Handle to an instance of the module whose executable file contains the icon to be loaded. This parameter must be NULL when a standard icon is being loaded.
  • lpIconName
    [in] Long pointer to a null-terminated string that contains the name of the icon resource to be loaded. Alternatively, this parameter can contain the resource identifier in the low-order word and zero in the high-order word. Use the MAKEINTRESOURCE macro to create this value.

Return Values

A handle to the newly loaded icon indicates success. NULL indicates failure. To get extended error information, call GetLastError.

Remarks

This function loads the icon resource only if it has not been loaded; otherwise, it retrieves a handle to the existing resource. The function searches the icon resource for the icon most appropriate for the current display. The icon resource can be a color or monochrome bitmap.

This function can only load an icon whose size conforms to the SM_CXICON and SM_CYICON system metric values. Use the LoadImage function to load icons of other sizes.

In Windows CE 1.0, the icon must be a two bit per pixel (.ic2) icon or a monochrome icon.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.
Link Library: Icon.lib.

See Also

LoadImage | MAKEINTRESOURCE

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.