DescribePixelFormat method

int DescribePixelFormat(
  1. Pointer<HDC__> hdc,
  2. int iPixelFormat,
  3. int nBytes,
  4. Pointer<PIXELFORMATDESCRIPTOR> ppfd,
)

Implementation

int DescribePixelFormat(
  ffi.Pointer<HDC__> hdc,
  int iPixelFormat,
  int nBytes,
  ffi.Pointer<PIXELFORMATDESCRIPTOR> ppfd,
) {
  return _DescribePixelFormat(
    hdc,
    iPixelFormat,
    nBytes,
    ppfd,
  );
}