SetMenuItemBitmaps method

int SetMenuItemBitmaps(
  1. Pointer<HMENU__> hMenu,
  2. int uPosition,
  3. int uFlags,
  4. Pointer<HBITMAP__> hBitmapUnchecked,
  5. Pointer<HBITMAP__> hBitmapChecked,
)

Implementation

int SetMenuItemBitmaps(
  ffi.Pointer<HMENU__> hMenu,
  int uPosition,
  int uFlags,
  ffi.Pointer<HBITMAP__> hBitmapUnchecked,
  ffi.Pointer<HBITMAP__> hBitmapChecked,
) {
  return _SetMenuItemBitmaps(
    hMenu,
    uPosition,
    uFlags,
    hBitmapUnchecked,
    hBitmapChecked,
  );
}