wglCreateContext method

Pointer<HGLRC__> wglCreateContext(
  1. Pointer<HDC__> arg0
)

Implementation

ffi.Pointer<HGLRC__> wglCreateContext(
  ffi.Pointer<HDC__> arg0,
) {
  return (_wglCreateContext ??=
      _dylib.lookupFunction<_c_wglCreateContext, _dart_wglCreateContext>(
          'wglCreateContext'))(
    arg0,
  );
}