wglGetProcAddress method

Pointer<NativeFunction<PROC>> wglGetProcAddress(
  1. Pointer<Int8> arg0
)

Implementation

ffi.Pointer<ffi.NativeFunction<PROC>> wglGetProcAddress(
  ffi.Pointer<ffi.Int8> arg0,
) {
  return (_wglGetProcAddress ??=
      _dylib.lookupFunction<_c_wglGetProcAddress, _dart_wglGetProcAddress>(
          'wglGetProcAddress'))(
    arg0,
  );
}