CreateDCA method

Pointer<HDC__> CreateDCA(
  1. Pointer<Int8> pwszDriver,
  2. Pointer<Int8> pwszDevice,
  3. Pointer<Int8> pszPort,
  4. Pointer<LPDEVMODEA> pdm,
)

Implementation

ffi.Pointer<HDC__> CreateDCA(
  ffi.Pointer<ffi.Int8> pwszDriver,
  ffi.Pointer<ffi.Int8> pwszDevice,
  ffi.Pointer<ffi.Int8> pszPort,
  ffi.Pointer<LPDEVMODEA> pdm,
) {
  return (_CreateDCA ??=
      _dylib.lookupFunction<_c_CreateDCA, _dart_CreateDCA>('CreateDCA'))(
    pwszDriver,
    pwszDevice,
    pszPort,
    pdm,
  );
}