Package: cairo

CStruct cairo-rectangle-list-t

Details

A data structure for holding a dynamically allocated array of rectangles.
(defcstruct cairo-rectangle-list-t
  (status cairo-status-t)
  (rectangles (:pointer (:pointer (:struct cairo-rectangle-t))))
  (num-rectangles :int))  
status
Error status of the rectangle list.
rectangles
Array containing the rectangles.
num-rectangles
The number of rectangles in this list.
 

See also

2021-12-12