ChangeMenuW method
Implementation
int ChangeMenuW(
ffi.Pointer<HMENU__> hMenu,
int cmd,
ffi.Pointer<ffi.Uint16> lpszNewItem,
int cmdInsert,
int flags,
) {
return (_ChangeMenuW ??= _dylib
.lookupFunction<_c_ChangeMenuW, _dart_ChangeMenuW>('ChangeMenuW'))(
hMenu,
cmd,
lpszNewItem,
cmdInsert,
flags,
);
}