RestoreDC method

int RestoreDC(
  1. Pointer<HDC__> hdc,
  2. int nSavedDC
)

Implementation

int RestoreDC(
  ffi.Pointer<HDC__> hdc,
  int nSavedDC,
) {
  return (_RestoreDC ??=
      _dylib.lookupFunction<_c_RestoreDC, _dart_RestoreDC>('RestoreDC'))(
    hdc,
    nSavedDC,
  );
}