cairo_rectangle_list_t

A data structure for holding a dynamically allocated array of rectangles. cairo_status_t status; Error status of the rectangle list cairo_rectangle_t *rectangles; Array containing the rectangles int num_rectangles; Number of rectangles in this list Since 1.4

struct cairo_rectangle_list_t {
cairo_status_t status;
cairo_rectangle_t* rectangles;
int numRectangles;
}