ChangeMenuA method
Implementation
int ChangeMenuA(
ffi.Pointer<HMENU__> hMenu,
int cmd,
ffi.Pointer<ffi.Int8> lpszNewItem,
int cmdInsert,
int flags,
) {
return (_ChangeMenuA ??= _dylib
.lookupFunction<_c_ChangeMenuA, _dart_ChangeMenuA>('ChangeMenuA'))(
hMenu,
cmd,
lpszNewItem,
cmdInsert,
flags,
);
}