File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 <define name =" CAIRO_MIME_TYPE_PNG" value =" "image/png"" />
2222 <define name =" CAIRO_MIME_TYPE_URI" value =" "text/x-uri"" />
2323 <define name =" CAIRO_MIME_TYPE_UNIQUE_ID" value =" "application/x-cairo.uuid"" />
24+ <define name =" CAIRO_VERSION_ENCODE(major, minor, micro)" value =" (((major) * 10000) + ((minor) * 100) + ((micro) * 1))" />
2425 <!-- # ######### cairo Allocation / Deallocation ########## -->
2526 <!-- # ######### cairo Functions ########## -->
2627 <!-- cairo_t * cairo_create (cairo_surface_t *target); -->
Original file line number Diff line number Diff line change 99
1010#include <cairo.h>
1111
12+ #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE (1 , 2 , 3 )
13+ #endif
14+
1215void validCode (cairo_surface_t * target )
1316{
1417 cairo_t * cairo1 = cairo_create (target );
You can’t perform that action at this time.
0 commit comments