CreateCompatibleBitmap method
Implementation
ffi.Pointer<HBITMAP__> CreateCompatibleBitmap(
ffi.Pointer<HDC__> hdc,
int cx,
int cy,
) {
return (_CreateCompatibleBitmap ??= _dylib.lookupFunction<
_c_CreateCompatibleBitmap,
_dart_CreateCompatibleBitmap>('CreateCompatibleBitmap'))(
hdc,
cx,
cy,
);
}