wglDescribeLayerPlane method

int wglDescribeLayerPlane(
  1. Pointer<HDC__> arg0,
  2. int arg1,
  3. int arg2,
  4. int arg3,
  5. Pointer<LPLAYERPLANEDESCRIPTOR> arg4,
)

Implementation

int wglDescribeLayerPlane(
  ffi.Pointer<HDC__> arg0,
  int arg1,
  int arg2,
  int arg3,
  ffi.Pointer<LPLAYERPLANEDESCRIPTOR> arg4,
) {
  return (_wglDescribeLayerPlane ??= _dylib.lookupFunction<
      _c_wglDescribeLayerPlane,
      _dart_wglDescribeLayerPlane>('wglDescribeLayerPlane'))(
    arg0,
    arg1,
    arg2,
    arg3,
    arg4,
  );
}