CreateIconFromResourceEx method
Implementation
ffi.Pointer<HICON__> CreateIconFromResourceEx(
ffi.Pointer<ffi.Uint8> presbits,
int dwResSize,
int fIcon,
int dwVer,
int cxDesired,
int cyDesired,
int Flags,
) {
return (_CreateIconFromResourceEx ??= _dylib.lookupFunction<
_c_CreateIconFromResourceEx,
_dart_CreateIconFromResourceEx>('CreateIconFromResourceEx'))(
presbits,
dwResSize,
fIcon,
dwVer,
cxDesired,
cyDesired,
Flags,
);
}