LoadMenu function user32

int LoadMenu(
  1. int hInstance,
  2. Pointer<Utf16> lpMenuName
)

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

HMENU LoadMenuW(
  [in, optional] HINSTANCE hInstance,
  [in]           LPCWSTR   lpMenuName
);

Implementation

int LoadMenu(int hInstance, Pointer<Utf16> lpMenuName) =>
    _LoadMenu(hInstance, lpMenuName);