LoadImageW method
Implementation
ffi.Pointer<ffi.Void> LoadImageW(
ffi.Pointer<HINSTANCE__> hInst,
ffi.Pointer<ffi.Uint16> name,
int type,
int cx,
int cy,
int fuLoad,
) {
return (_LoadImageW ??=
_dylib.lookupFunction<_c_LoadImageW, _dart_LoadImageW>('LoadImageW'))(
hInst,
name,
type,
cx,
cy,
fuLoad,
);
}