RoundRect method

int RoundRect(
  1. Pointer<HDC__> hdc,
  2. int left,
  3. int top,
  4. int right,
  5. int bottom,
  6. int width,
  7. int height,
)

Implementation

int RoundRect(
  ffi.Pointer<HDC__> hdc,
  int left,
  int top,
  int right,
  int bottom,
  int width,
  int height,
) {
  return _RoundRect(
    hdc,
    left,
    top,
    right,
    bottom,
    width,
    height,
  );
}