GetMenuBarInfo function user32

int GetMenuBarInfo(
  1. int hwnd,
  2. int idObject,
  3. int idItem,
  4. Pointer<MENUBARINFO> pmbi,
)

Retrieves information about the specified menu bar.

BOOL GetMenuBarInfo(
  [in]      HWND         hwnd,
  [in]      LONG         idObject,
  [in]      LONG         idItem,
  [in, out] PMENUBARINFO pmbi
);

Implementation

int GetMenuBarInfo(
        int hwnd, int idObject, int idItem, Pointer<MENUBARINFO> pmbi) =>
    _GetMenuBarInfo(hwnd, idObject, idItem, pmbi);