wglCopyContext method

int wglCopyContext(
  1. Pointer<HGLRC__> arg0,
  2. Pointer<HGLRC__> arg1,
  3. int arg2
)

Implementation

int wglCopyContext(
  ffi.Pointer<HGLRC__> arg0,
  ffi.Pointer<HGLRC__> arg1,
  int arg2,
) {
  return (_wglCopyContext ??=
      _dylib.lookupFunction<_c_wglCopyContext, _dart_wglCopyContext>(
          'wglCopyContext'))(
    arg0,
    arg1,
    arg2,
  );
}