CreateCompatibleDC method
Implementation
ffi.Pointer<HDC__> CreateCompatibleDC(
ffi.Pointer<HDC__> hdc,
) {
return (_CreateCompatibleDC ??=
_dylib.lookupFunction<_c_CreateCompatibleDC, _dart_CreateCompatibleDC>(
'CreateCompatibleDC'))(
hdc,
);
}