LoadImageA method
Implementation
ffi.Pointer<ffi.Void> LoadImageA(
ffi.Pointer<HINSTANCE__> hInst,
ffi.Pointer<ffi.Int8> name,
int type,
int cx,
int cy,
int fuLoad,
) {
return (_LoadImageA ??=
_dylib.lookupFunction<_c_LoadImageA, _dart_LoadImageA>('LoadImageA'))(
hInst,
name,
type,
cx,
cy,
fuLoad,
);
}