SetMenuItemBitmaps function user32
Associates the specified bitmap with a menu item. Whether the menu item is selected or clear, the system displays the appropriate bitmap next to the menu item.
BOOL SetMenuItemBitmaps(
HMENU hMenu,
UINT uPosition,
UINT uFlags,
HBITMAP hBitmapUnchecked,
HBITMAP hBitmapChecked
);
Implementation
int SetMenuItemBitmaps(int hMenu, int uPosition, int uFlags,
int hBitmapUnchecked, int hBitmapChecked) =>
_SetMenuItemBitmaps(
hMenu, uPosition, uFlags, hBitmapUnchecked, hBitmapChecked);