15.2. Data Definitions for libcairo

This section defines global identifiers and their values that are associated with interfaces contained in libcairo. These definitions are organized into groups that correspond to system headers. This convention is used as a convenience for the reader, and does not imply the existence of these headers, or their content. Where an interface is defined as requiring a particular system header file all of the data definitions for that system header file presented here shall be in effect.

This section gives data definitions to promote binary application portability, not to repeat source interface definitions available elsewhere. System providers and application developers should use this ABI to supplement - not to replace - source interface definition specifications.

This specification uses the ISO C (1999) C Language as the reference programming language, and data definitions are specified in ISO C format. The C language is used here as a convenient notation. Using a C language description of these data objects does not preclude their use by other programming languages.

15.2.1. cairo/cairo-features.h


#define CAIRO_HAS_FT_FONT	1
#define CAIRO_HAS_PDF_SURFACE	1
#define CAIRO_HAS_PNG_FUNCTIONS	1
#define CAIRO_HAS_PS_SURFACE	1
#define CAIRO_HAS_SVG_SURFACE	1
#define CAIRO_HAS_XLIB_SURFACE	1
#define CAIRO_HAS_XLIB_XRENDER_SURFACE	1
#define CAIRO_VERSION_MAJOR	1
#define CAIRO_VERSION_MINOR	12
#define CAIRO_VERSION_MICRO	4
#define CAIRO_VERSION_STRING	CAIRO_VERSION_STRINGIZE( \
        CAIRO_VERSION_MAJOR, \
	CAIRO_VERSION_MINOR, \
	CAIRO_VERSION_MICRO)

15.2.2. cairo/cairo-ft.h


typedef enum {
    CAIRO_FT_SYNTHESIZE_BOLD = 1 << 0,
    CAIRO_FT_SYNTHESIZE_OBLIQUE = 1 << 1
} cairo_ft_synthesize_t;
extern cairo_font_face_t *cairo_ft_font_face_create_for_ft_face(FT_Face
								face,
								int
								load_flags);
extern cairo_font_face_t *cairo_ft_font_face_create_for_pattern(FcPattern *
								pattern);
extern unsigned int cairo_ft_font_face_get_synthesize(cairo_font_face_t *
						      font_face);
extern void cairo_ft_font_face_set_synthesize(cairo_font_face_t *
					      font_face,
					      unsigned int synth_flags);
extern void cairo_ft_font_face_unset_synthesize(cairo_font_face_t *
						font_face,
						unsigned int synth_flags);
extern void cairo_ft_font_options_substitute(const cairo_font_options_t *
					     options, FcPattern * pattern);
extern FT_Face cairo_ft_scaled_font_lock_face(cairo_scaled_font_t *
					      scaled_font);
extern void cairo_ft_scaled_font_unlock_face(cairo_scaled_font_t *
					     scaled_font);

15.2.3. cairo/cairo-gobject.h


#define CAIRO_GOBJECT_TYPE_ANTIALIAS	cairo_gobject_antialias_get_type ()
#define CAIRO_GOBJECT_TYPE_CLUSTER_FLAGS	cairo_gobject_cluster_flags_get_type ()
#define CAIRO_GOBJECT_TYPE_CONTENT	cairo_gobject_content_get_type ()
#define CAIRO_GOBJECT_TYPE_CONTEXT	cairo_gobject_context_get_type ()
#define CAIRO_GOBJECT_TYPE_DEVICE	cairo_gobject_device_get_type ()
#define CAIRO_GOBJECT_TYPE_DEVICE_TYPE	cairo_gobject_device_type_get_type ()
#define CAIRO_GOBJECT_TYPE_EXTEND	cairo_gobject_extend_get_type ()
#define CAIRO_GOBJECT_TYPE_FILL_RULE	cairo_gobject_fill_rule_get_type ()
#define CAIRO_GOBJECT_TYPE_FILTER	cairo_gobject_filter_get_type ()
#define CAIRO_GOBJECT_TYPE_FONT_FACE	cairo_gobject_font_face_get_type ()
#define CAIRO_GOBJECT_TYPE_FONT_OPTIONS	cairo_gobject_font_options_get_type ()
#define CAIRO_GOBJECT_TYPE_FONT_SLANT	cairo_gobject_font_slant_get_type ()
#define CAIRO_GOBJECT_TYPE_FONT_TYPE	cairo_gobject_font_type_get_type ()
#define CAIRO_GOBJECT_TYPE_FONT_WEIGHT	cairo_gobject_font_weight_get_type ()
#define CAIRO_GOBJECT_TYPE_FORMAT	cairo_gobject_format_get_type ()
#define CAIRO_GOBJECT_TYPE_HNT_METRICS	cairo_gobject_hint_metrics_get_type ()
#define CAIRO_GOBJECT_TYPE_HINT_STYLE	cairo_gobject_hint_style_get_type ()
#define CAIRO_GOBJECT_TYPE_LINE_CAP	cairo_gobject_line_cap_get_type ()
#define CAIRO_GOBJECT_TYPE_LINE_JOIN	cairo_gobject_line_join_get_type ()
#define CAIRO_GOBJECT_TYPE_OPERATOR	cairo_gobject_operator_get_type ()
#define CAIRO_GOBJECT_TYPE_PATH_DATA_TYPE	cairo_gobject_path_data_type_get_type ()
#define CAIRO_GOBJECT_TYPE_PATTERN	cairo_gobject_pattern_get_type ()
#define CAIRO_GOBJECT_TYPE_PATTERN_TYPE	cairo_gobject_pattern_type_get_type ()
#define CAIRO_GOBJECT_TYPE_RECTANGLE	cairo_gobject_rectangle_get_type ()
#define CAIRO_GOBJECT_TYPE_RECTANGLE_INT	cairo_gobject_rectangle_int_get_type ()
#define CAIRO_GOBJECT_TYPE_REGION	cairo_gobject_region_get_type ()
#define CAIRO_GOBJECT_TYPE_REGION_OVERLAP	cairo_gobject_region_overlap_get_type ()
#define CAIRO_GOBJECT_TYPE_SCALED_FONT	cairo_gobject_scaled_font_get_type ()
#define CAIRO_GOBJECT_TYPE_STATUS	cairo_gobject_status_get_type ()
#define CAIRO_GOBJECT_TYPE_SUBPIXEL_ORDER	cairo_gobject_subpixel_order_get_type ()
#define CAIRO_GOBJECT_TYPE_SURFACE	cairo_gobject_surface_get_type ()
#define CAIRO_GOBJECT_TYPE_SURFACE_TYPE	cairo_gobject_surface_type_get_type ()

extern GType cairo_gobject_antialias_get_type(void);
extern GType cairo_gobject_content_get_type(void);
extern GType cairo_gobject_context_get_type(void);
extern GType cairo_gobject_device_get_type(void);
extern GType cairo_gobject_device_type_get_type(void);
extern GType cairo_gobject_extend_get_type(void);
extern GType cairo_gobject_fill_rule_get_type(void);
extern GType cairo_gobject_filter_get_type(void);
extern GType cairo_gobject_font_face_get_type(void);
extern GType cairo_gobject_font_options_get_type(void);
extern GType cairo_gobject_font_slant_get_type(void);
extern GType cairo_gobject_font_type_get_type(void);
extern GType cairo_gobject_font_weight_get_type(void);
extern GType cairo_gobject_format_get_type(void);
extern GType cairo_gobject_hint_metrics_get_type(void);
extern GType cairo_gobject_hint_style_get_type(void);
extern GType cairo_gobject_line_cap_get_type(void);
extern GType cairo_gobject_line_join_get_type(void);
extern GType cairo_gobject_operator_get_type(void);
extern GType cairo_gobject_path_data_type_get_type(void);
extern GType cairo_gobject_pattern_get_type(void);
extern GType cairo_gobject_pattern_type_get_type(void);
extern GType cairo_gobject_rectangle_get_type(void);
extern GType cairo_gobject_rectangle_int_get_type(void);
extern GType cairo_gobject_region_get_type(void);
extern GType cairo_gobject_region_overlap_get_type(void);
extern GType cairo_gobject_scaled_font_get_type(void);
extern GType cairo_gobject_status_get_type(void);
extern GType cairo_gobject_subpixel_order_get_type(void);
extern GType cairo_gobject_surface_get_type(void);
extern GType cairo_gobject_surface_type_get_type(void);
extern GType cairo_gobject_text_cluster_flags_get_type(void);

15.2.4. cairo/cairo-pdf.h


typedef enum _cairo_pdf_version {
    CAIRO_PDF_VERSION_1_4,
    CAIRO_PDF_VERSION_1_5
} cairo_pdf_version_t;
extern void cairo_pdf_get_versions(const cairo_pdf_version_t * *versions,
				   int *num_versions);
extern cairo_surface_t *cairo_pdf_surface_create(const char *filename,
						 double width_in_points,
						 double height_in_points);
extern cairo_surface_t
    *cairo_pdf_surface_create_for_stream(cairo_write_func_t write_func,
					 void *closure,
					 double width_in_points,
					 double height_in_points);
extern void cairo_pdf_surface_restrict_to_version(cairo_surface_t *
						  surface,
						  cairo_pdf_version_t
						  version);
extern void cairo_pdf_surface_set_size(cairo_surface_t * surface,
				       double width_in_points,
				       double height_in_points);
extern const char *cairo_pdf_version_to_string(cairo_pdf_version_t
					       version);

15.2.5. cairo/cairo-ps.h


typedef enum _cairo_ps_level {
    CAIRO_PS_LEVEL_2,
    CAIRO_PS_LEVEL_3
} cairo_ps_level_t;
extern void cairo_ps_get_levels(const cairo_ps_level_t * *levels,
				int *num_levels);
extern const char *cairo_ps_level_to_string(cairo_ps_level_t level);
extern cairo_surface_t *cairo_ps_surface_create(const char *filename,
						double width_in_points,
						double height_in_points);
extern cairo_surface_t
    *cairo_ps_surface_create_for_stream(cairo_write_func_t write_func,
					void *closure,
					double width_in_points,
					double height_in_points);
extern void cairo_ps_surface_dsc_begin_page_setup(cairo_surface_t *
						  surface);
extern void cairo_ps_surface_dsc_begin_setup(cairo_surface_t * surface);
extern void cairo_ps_surface_dsc_comment(cairo_surface_t * surface,
					 const char *comment);
extern cairo_bool_t cairo_ps_surface_get_eps(cairo_surface_t * surface);
extern void cairo_ps_surface_restrict_to_level(cairo_surface_t * surface,
					       cairo_ps_level_t level);
extern void cairo_ps_surface_set_eps(cairo_surface_t * surface,
				     cairo_bool_t eps);
extern void cairo_ps_surface_set_size(cairo_surface_t * surface,
				      double width_in_points,
				      double height_in_points);

15.2.6. cairo/cairo-script-interpreter.h


typedef struct _cairo_script_interpreter cairo_script_interpreter_t;
typedef void (*csi_destroy_func_t) (void *, void *);
typedef cairo_surface_t *(*csi_surface_create_func_t) (void *,
						       cairo_content_t,
						       double, double,
						       long int);
typedef cairo_t *(*csi_context_create_func_t) (void *, cairo_surface_t *);
typedef void (*csi_show_page_func_t) (void *, cairo_t *);
typedef void (*csi_copy_page_func_t) (void *, cairo_t *);
typedef struct _cairo_script_interpreter_hooks {
    void *closure;
    csi_surface_create_func_t surface_create;
    csi_destroy_func_t surface_destroy;
    csi_context_create_func_t context_create;
    csi_destroy_func_t context_destroy;
    csi_show_page_func_t show_page;
    csi_copy_page_func_t copy_page;
} cairo_script_interpreter_hooks_t;
extern cairo_script_interpreter_t *cairo_script_interpreter_create(void);
extern cairo_status_t
cairo_script_interpreter_destroy(cairo_script_interpreter_t * ctx);
extern cairo_status_t
cairo_script_interpreter_feed_stream(cairo_script_interpreter_t * ctx,
				     FILE * stream);
extern cairo_status_t
cairo_script_interpreter_feed_string(cairo_script_interpreter_t * ctx,
				     const char *line, int len);
extern cairo_status_t
cairo_script_interpreter_finish(cairo_script_interpreter_t * ctx);
extern unsigned int
cairo_script_interpreter_get_line_number(cairo_script_interpreter_t * ctx);
extern void
cairo_script_interpreter_install_hooks(cairo_script_interpreter_t * ctx,
				       const
				       cairo_script_interpreter_hooks_t *
				       hooks);
extern cairo_script_interpreter_t
    *cairo_script_interpreter_reference(cairo_script_interpreter_t * ctx);
extern cairo_status_t
cairo_script_interpreter_run(cairo_script_interpreter_t * ctx,
			     const char *filename);
extern cairo_status_t cairo_script_interpreter_translate_stream(FILE *
								stream,
								cairo_write_func_t
								write_func,
								void
								*closure);

15.2.7. cairo/cairo-script.h


typedef enum {
    CAIRO_SCRIPT_MODE_ASCII,
    CAIRO_SCRIPT_MODE_BINARY
} cairo_script_mode_t;
extern cairo_device_t *cairo_script_create(const char *filename);
extern cairo_device_t *cairo_script_create_for_stream(cairo_write_func_t
						      write_func,
						      void *closure);
extern cairo_status_t cairo_script_from_recording_surface(cairo_device_t *
							  script,
							  cairo_surface_t *
							  recording_surface);
extern cairo_script_mode_t cairo_script_get_mode(cairo_device_t * script);
extern void cairo_script_set_mode(cairo_device_t * script,
				  cairo_script_mode_t mode);
extern cairo_surface_t *cairo_script_surface_create(cairo_device_t *
						    script,
						    cairo_content_t
						    content, double width,
						    double height);
extern cairo_surface_t
    *cairo_script_surface_create_for_target(cairo_device_t * script,
					    cairo_surface_t * target);
extern void cairo_script_write_comment(cairo_device_t * script,
				       const char *comment, int len);

15.2.8. cairo/cairo-svg.h


typedef enum _cairo_svg_version {
    CAIRO_SVG_VERSION_1_1,
    CAIRO_SVG_VERSION_1_2 = 1
} cairo_svg_version_t;
extern void cairo_svg_get_versions(const cairo_svg_version_t * *versions,
				   int *num_versions);
extern cairo_surface_t *cairo_svg_surface_create(const char *filename,
						 double width_in_points,
						 double height_in_points);
extern cairo_surface_t
    *cairo_svg_surface_create_for_stream(cairo_write_func_t write_func,
					 void *closure,
					 double width_in_points,
					 double height_in_points);
extern void cairo_svg_surface_restrict_to_version(cairo_surface_t *
						  surface,
						  cairo_svg_version_t
						  version);
extern const char *cairo_svg_version_to_string(cairo_svg_version_t
					       version);

15.2.9. cairo/cairo-xcb.h


extern xcb_connection_t *cairo_xcb_device_get_connection(cairo_device_t *
							 device);
extern cairo_surface_t *cairo_xcb_surface_create(xcb_connection_t *
						 connection,
						 xcb_drawable_t drawable,
						 xcb_visualtype_t * visual,
						 int width, int height);
extern cairo_surface_t
    *cairo_xcb_surface_create_for_bitmap(xcb_connection_t * connection,
					 xcb_screen_t * screen,
					 xcb_pixmap_t bitmap, int width,
					 int height);
extern void cairo_xcb_surface_set_drawable(cairo_surface_t * surface,
					   xcb_drawable_t drawable,
					   int width, int height);
extern void cairo_xcb_surface_set_size(cairo_surface_t * surface,
				       int width, int height);

15.2.10. cairo/cairo-xlib-xrender.h


extern cairo_surface_t
    *cairo_xlib_surface_create_with_xrender_format(Display * dpy,
						   Drawable drawable,
						   Screen * screen,
						   XRenderPictFormat *
						   format, int width,
						   int height);
extern XRenderPictFormat
    *cairo_xlib_surface_get_xrender_format(cairo_surface_t * surface);

15.2.11. cairo/cairo-xlib.h


extern cairo_surface_t *cairo_xlib_surface_create(Display * dpy,
						  Drawable drawable,
						  Visual * visual,
						  int width, int height);
extern cairo_surface_t *cairo_xlib_surface_create_for_bitmap(Display * dpy,
							     Pixmap bitmap,
							     Screen *
							     screen,
							     int width,
							     int height);
extern int cairo_xlib_surface_get_depth(cairo_surface_t * surface);
extern Display *cairo_xlib_surface_get_display(cairo_surface_t * surface);
extern Drawable cairo_xlib_surface_get_drawable(cairo_surface_t * surface);
extern int cairo_xlib_surface_get_height(cairo_surface_t * surface);
extern Screen *cairo_xlib_surface_get_screen(cairo_surface_t * surface);
extern Visual *cairo_xlib_surface_get_visual(cairo_surface_t * surface);
extern int cairo_xlib_surface_get_width(cairo_surface_t * surface);
extern void cairo_xlib_surface_set_drawable(cairo_surface_t * surface,
					    Drawable drawable, int width,
					    int height);
extern void cairo_xlib_surface_set_size(cairo_surface_t * surface,
					int width, int height);

15.2.12. cairo/cairo.h


#define CAIRO_VERSION	 \
   CAIRO_VERSION_ENCODE( CAIRO_VERSION_MAJOR, CAIRO_VERSION_MINOR, \
    CAIRO_VERSION_MICRO)
#define CAIRO_VERSION_ENCODE(major, minor, micro)	(\
  ((major) * 10000)   \
+ ((minor) *   100) \
+ ((micro) *     1))
#define CAIRO_MIME_TYPE_UNIQUE_ID	"application/x-cairo.uuid"
#define CAIRO_MIME_TYPE_JP2	"image/jp2"
#define CAIRO_MIME_TYPE_JPEG	"image/jpeg"
#define CAIRO_MIME_TYPE_PNG	"image/png"
#define CAIRO_MIME_TYPE_URI	"text/x-uri"

typedef int cairo_bool_t;
typedef struct _cairo cairo_t;
typedef struct _cairo_surface cairo_surface_t;
typedef struct _cairo_matrix {
    double xx;
    double yx;
    double xy;
    double yy;
    double x0;
    double y0;
} cairo_matrix_t;
typedef struct _cairo_pattern cairo_pattern_t;
typedef void (*cairo_destroy_func_t) (void *);
typedef struct _cairo_user_data_key {
    int unused;
} cairo_user_data_key_t;
typedef enum _cairo_status {
    CAIRO_STATUS_SUCCESS,
    CAIRO_STATUS_NO_MEMORY = 1,
    CAIRO_STATUS_INVALID_RESTORE = 2,
    CAIRO_STATUS_INVALID_POP_GROUP = 3,
    CAIRO_STATUS_NO_CURRENT_POINT = 4,
    CAIRO_STATUS_INVALID_MATRIX = 5,
    CAIRO_STATUS_INVALID_STATUS = 6,
    CAIRO_STATUS_NULL_POINTER = 7,
    CAIRO_STATUS_INVALID_STRING = 8,
    CAIRO_STATUS_INVALID_PATH_DATA = 9,
    CAIRO_STATUS_READ_ERROR = 10,
    CAIRO_STATUS_WRITE_ERROR = 11,
    CAIRO_STATUS_SURFACE_FINISHED = 12,
    CAIRO_STATUS_SURFACE_TYPE_MISMATCH = 13,
    CAIRO_STATUS_PATTERN_TYPE_MISMATCH = 14,
    CAIRO_STATUS_INVALID_CONTENT = 15,
    CAIRO_STATUS_INVALID_FORMAT = 16,
    CAIRO_STATUS_INVALID_VISUAL = 17,
    CAIRO_STATUS_FILE_NOT_FOUND = 18,
    CAIRO_STATUS_INVALID_DASH = 19,
    CAIRO_STATUS_INVALID_DSC_COMMENT = 20,
    CAIRO_STATUS_INVALID_INDEX = 21,
    CAIRO_STATUS_CLIP_NOT_REPRESENTABLE = 22,
    CAIRO_STATUS_TEMP_FILE_ERROR = 23,
    CAIRO_STATUS_INVALID_STRIDE = 24,
    CAIRO_STATUS_FONT_TYPE_MISMATCH = 25,
    CAIRO_STATUS_USER_FONT_IMMUTABLE = 26,
    CAIRO_STATUS_USER_FONT_ERROR = 27,
    CAIRO_STATUS_NEGATIVE_COUNT = 28,
    CAIRO_STATUS_INVALID_CLUSTERS = 29,
    CAIRO_STATUS_INVALID_SLANT = 30,
    CAIRO_STATUS_INVALID_WEIGHT = 31,
    CAIRO_STATUS_INVALID_SIZE = 32,
    CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED = 33,
    CAIRO_STATUS_DEVICE_TYPE_MISMATCH = 34,
    CAIRO_STATUS_DEVICE_ERROR = 35,
    CAIRO_STATUS_INVALID_MESH_CONSTRUCTION = 36,
    CAIRO_STATUS_DEVICE_FINISHED = 37,
    CAIRO_STATUS_LAST_STATUS = 38
} cairo_status_t;
typedef enum _cairo_content {
    CAIRO_CONTENT_COLOR = 4096,
    CAIRO_CONTENT_ALPHA = 8192,
    CAIRO_CONTENT_COLOR_ALPHA = 12288
} cairo_content_t;
typedef cairo_status_t(*cairo_write_func_t) (void *, const unsigned char *,
					     unsigned int);
typedef cairo_status_t(*cairo_read_func_t) (void *, unsigned char *,
					    unsigned int);
typedef enum _cairo_operator {
    CAIRO_OPERATOR_CLEAR,
    CAIRO_OPERATOR_SOURCE = 1,
    CAIRO_OPERATOR_OVER = 2,
    CAIRO_OPERATOR_IN = 3,
    CAIRO_OPERATOR_OUT = 4,
    CAIRO_OPERATOR_ATOP = 5,
    CAIRO_OPERATOR_DEST = 6,
    CAIRO_OPERATOR_DEST_OVER = 7,
    CAIRO_OPERATOR_DEST_IN = 8,
    CAIRO_OPERATOR_DEST_OUT = 9,
    CAIRO_OPERATOR_DEST_ATOP = 10,
    CAIRO_OPERATOR_XOR = 11,
    CAIRO_OPERATOR_ADD = 12,
    CAIRO_OPERATOR_SATURATE = 13,
    CAIRO_OPERATOR_MULTIPLY = 14,
    CAIRO_OPERATOR_SCREEN = 15,
    CAIRO_OPERATOR_OVERLAY = 16,
    CAIRO_OPERATOR_DARKEN = 17,
    CAIRO_OPERATOR_LIGHTEN = 18,
    CAIRO_OPERATOR_COLOR_DODGE = 19,
    CAIRO_OPERATOR_COLOR_BURN = 20,
    CAIRO_OPERATOR_HARD_LIGHT = 21,
    CAIRO_OPERATOR_SOFT_LIGHT = 22,
    CAIRO_OPERATOR_DIFFERENCE = 23,
    CAIRO_OPERATOR_EXCLUSION = 24,
    CAIRO_OPERATOR_HSL_HUE = 25,
    CAIRO_OPERATOR_HSL_SATURATION = 26,
    CAIRO_OPERATOR_HSL_COLOR = 27,
    CAIRO_OPERATOR_HSL_LUMINOSITY = 28
} cairo_operator_t;
typedef enum _cairo_antialias {
    CAIRO_ANTIALIAS_DEFAULT,
    CAIRO_ANTIALIAS_NONE = 1,
    CAIRO_ANTIALIAS_GRAY = 2,
    CAIRO_ANTIALIAS_SUBPIXEL = 3,
    CAIRO_ANTIALIAS_FAST = 4,
    CAIRO_ANTIALIAS_GOOD = 5,
    CAIRO_ANTIALIAS_BEST = 6
} cairo_antialias_t;
typedef enum _cairo_fill_rule {
    CAIRO_FILL_RULE_WINDING,
    CAIRO_FILL_RULE_EVEN_ODD = 1
} cairo_fill_rule_t;
typedef enum _cairo_line_cap {
    CAIRO_LINE_CAP_BUTT,
    CAIRO_LINE_CAP_ROUND = 1,
    CAIRO_LINE_CAP_SQUARE = 2
} cairo_line_cap_t;
typedef enum _cairo_line_join {
    CAIRO_LINE_JOIN_MITER,
    CAIRO_LINE_JOIN_ROUND = 1,
    CAIRO_LINE_JOIN_BEVEL = 2
} cairo_line_join_t;
typedef struct _cairo_rectangle {
    double x;
    double y;
    double width;
    double height;
} cairo_rectangle_t;
typedef struct _cairo_rectangle_list {
    cairo_status_t status;
    cairo_rectangle_t *rectangles;
    int num_rectangles;
} cairo_rectangle_list_t;
typedef struct _cairo_scaled_font cairo_scaled_font_t;
typedef struct _cairo_font_face cairo_font_face_t;
typedef struct {
    long unsigned int index;
    double x;
    double y;
} cairo_glyph_t;
typedef struct {
    double x_bearing;
    double y_bearing;
    double width;
    double height;
    double x_advance;
    double y_advance;
} cairo_text_extents_t;
typedef struct {
    double ascent;
    double descent;
    double height;
    double max_x_advance;
    double max_y_advance;
} cairo_font_extents_t;
typedef enum _cairo_font_slant {
    CAIRO_FONT_SLANT_NORMAL,
    CAIRO_FONT_SLANT_ITALIC = 1,
    CAIRO_FONT_SLANT_OBLIQUE = 2
} cairo_font_slant_t;
typedef enum _cairo_font_weight {
    CAIRO_FONT_WEIGHT_NORMAL,
    CAIRO_FONT_WEIGHT_BOLD = 1
} cairo_font_weight_t;
typedef enum _cairo_subpixel_order {
    CAIRO_SUBPIXEL_ORDER_DEFAULT,
    CAIRO_SUBPIXEL_ORDER_RGB = 1,
    CAIRO_SUBPIXEL_ORDER_BGR = 2,
    CAIRO_SUBPIXEL_ORDER_VRGB = 3,
    CAIRO_SUBPIXEL_ORDER_VBGR = 4
} cairo_subpixel_order_t;
typedef enum _cairo_hint_style {
    CAIRO_HINT_STYLE_DEFAULT,
    CAIRO_HINT_STYLE_NONE = 1,
    CAIRO_HINT_STYLE_SLIGHT = 2,
    CAIRO_HINT_STYLE_MEDIUM = 3,
    CAIRO_HINT_STYLE_FULL = 4
} cairo_hint_style_t;
typedef enum _cairo_hint_metrics {
    CAIRO_HINT_METRICS_DEFAULT,
    CAIRO_HINT_METRICS_OFF = 1,
    CAIRO_HINT_METRICS_ON = 2
} cairo_hint_metrics_t;
typedef struct _cairo_font_options cairo_font_options_t;
typedef enum _cairo_font_type {
    CAIRO_FONT_TYPE_TOY,
    CAIRO_FONT_TYPE_FT = 1,
    CAIRO_FONT_TYPE_WIN32 = 2,
    CAIRO_FONT_TYPE_QUARTZ = 3,
    CAIRO_FONT_TYPE_USER = 4
} cairo_font_type_t;
typedef enum _cairo_path_data_type {
    CAIRO_PATH_MOVE_TO,
    CAIRO_PATH_LINE_TO = 1,
    CAIRO_PATH_CURVE_TO = 2,
    CAIRO_PATH_CLOSE_PATH = 3
} cairo_path_data_type_t;
typedef union _cairo_path_data_t {
    struct {
	cairo_path_data_type_t type;
	int length;
    } header;
    struct {
	double x;
	double y;
    } point;
} cairo_path_data_t;
typedef struct cairo_path {
    cairo_status_t status;
    cairo_path_data_t *data;
    int num_data;
} cairo_path_t;
typedef enum _cairo_surface_type {
    CAIRO_SURFACE_TYPE_IMAGE,
    CAIRO_SURFACE_TYPE_PDF = 1,
    CAIRO_SURFACE_TYPE_PS = 2,
    CAIRO_SURFACE_TYPE_XLIB = 3,
    CAIRO_SURFACE_TYPE_XCB = 4,
    CAIRO_SURFACE_TYPE_GLITZ = 5,
    CAIRO_SURFACE_TYPE_QUARTZ = 6,
    CAIRO_SURFACE_TYPE_WIN32 = 7,
    CAIRO_SURFACE_TYPE_BEOS = 8,
    CAIRO_SURFACE_TYPE_DIRECTFB = 9,
    CAIRO_SURFACE_TYPE_SVG = 10,
    CAIRO_SURFACE_TYPE_OS2 = 11,
    CAIRO_SURFACE_TYPE_WIN32_PRINTING = 12,
    CAIRO_SURFACE_TYPE_QUARTZ_IMAGE = 13,
    CAIRO_SURFACE_TYPE_SCRIPT = 14,
    CAIRO_SURFACE_TYPE_QT = 15,
    CAIRO_SURFACE_TYPE_RECORDING = 16,
    CAIRO_SURFACE_TYPE_VG = 17,
    CAIRO_SURFACE_TYPE_GL = 18,
    CAIRO_SURFACE_TYPE_DRM = 19,
    CAIRO_SURFACE_TYPE_TEE = 20,
    CAIRO_SURFACE_TYPE_XML = 21,
    CAIRO_SURFACE_TYPE_SKIA = 22,
    CAIRO_SURFACE_TYPE_SUBSURFACE = 23,
    CAIRO_SURFACE_TYPE_COGL = 24
} cairo_surface_type_t;
typedef enum _cairo_format {
    CAIRO_FORMAT_ARGB32,
    CAIRO_FORMAT_RGB24 = 1,
    CAIRO_FORMAT_A8 = 2,
    CAIRO_FORMAT_A1 = 3,
    CAIRO_FORMAT_RGB16_565 = 4,
    CAIRO_FORMAT_RGB30 = 5
} cairo_format_t;
typedef enum _cairo_pattern_type {
    CAIRO_PATTERN_TYPE_SOLID,
    CAIRO_PATTERN_TYPE_SURFACE = 1,
    CAIRO_PATTERN_TYPE_LINEAR = 2,
    CAIRO_PATTERN_TYPE_RADIAL = 3,
    CAIRO_PATTERN_TYPE_MESH = 4,
    CAIRO_PATTERN_TYPE_RASTER_SOURCE = 5
} cairo_pattern_type_t;
typedef enum _cairo_extend {
    CAIRO_EXTEND_NONE,
    CAIRO_EXTEND_REPEAT = 1,
    CAIRO_EXTEND_REFLECT = 2,
    CAIRO_EXTEND_PAD = 3
} cairo_extend_t;
typedef enum _cairo_filter {
    CAIRO_FILTER_FAST,
    CAIRO_FILTER_GOOD = 1,
    CAIRO_FILTER_BEST = 2,
    CAIRO_FILTER_NEAREST = 3,
    CAIRO_FILTER_BILINEAR = 4,
    CAIRO_FILTER_GAUSSIAN = 5
} cairo_filter_t;
typedef struct _cairo_device cairo_device_t;
typedef struct _cairo_rectangle_int {
    int x;
    int y;
    int width;
    int height;
} cairo_rectangle_int_t;
typedef enum _cairo_text_cluster_flags {
    CAIRO_TEXT_CLUSTER_FLAG_BACKWARD = 0x00000001
} cairo_text_cluster_flags_t;
typedef
cairo_status_t(*cairo_user_scaled_font_init_func_t) (cairo_scaled_font_t *,
						     cairo_t *,
						     cairo_font_extents_t
						     *);
typedef
cairo_status_t(*cairo_user_scaled_font_render_glyph_func_t)
(cairo_scaled_font_t *, unsigned long int, cairo_t *, cairo_text_extents_t *);
typedef
cairo_status_t(*cairo_user_scaled_font_text_to_glyphs_func_t)
(cairo_scaled_font_t *, const char *, int, cairo_glyph_t * *, int *,
cairo_text_cluster_t * *, int *, cairo_text_cluster_flags_t *);
typedef
cairo_status_t(*cairo_user_scaled_font_unicode_to_glyph_func_t)
(cairo_scaled_font_t *, unsigned long int, unsigned long int *);
typedef enum _cairo_device_type {
    CAIRO_DEVICE_TYPE_DRM,
    CAIRO_DEVICE_TYPE_GL,
    CAIRO_DEVICE_TYPE_SCRIPT,
    CAIRO_DEVICE_TYPE_XCB,
    CAIRO_DEVICE_TYPE_XLIB,
    CAIRO_DEVICE_TYPE_XML,
    CAIRO_DEVICE_TYPE_COGL,
    CAIRO_DEVICE_TYPE_WIN32,
    CAIRO_DEVICE_TYPE_INVALID = -1
} cairo_device_type_t;
typedef enum {
    CAIRO_SURFACE_OBSERVER_NORMAL = 0,
    CAIRO_SURFACE_OBSERVER_RECORD_OPERATIONS = 0x01
} cairo_surface_observer_mode_t;
typedef void (*cairo_surface_observer_callback_t) (cairo_surface_t *,
						   cairo_surface_t *,
						   void *);
typedef cairo_surface_t
    *(*cairo_raster_source_acquire_func_t) (cairo_pattern_t *, void *,
					    cairo_surface_t *,
					    const cairo_rectangle_int_t *);
typedef void (*cairo_raster_source_release_func_t) (cairo_pattern_t *,
						    void *,
						    cairo_surface_t *);
typedef
cairo_status_t(*cairo_raster_source_snapshot_func_t) (cairo_pattern_t *,
						      void *);
typedef cairo_status_t(*cairo_raster_source_copy_func_t) (cairo_pattern_t
							  *, void *,
							  const
							  cairo_pattern_t
							  *);
typedef void (*cairo_raster_source_finish_func_t) (cairo_pattern_t *,
						   void *);
typedef struct _cairo_region cairo_region_t;
typedef enum _cairo_region_overlap {
    CAIRO_REGION_OVERLAP_IN,
    CAIRO_REGION_OVERLAP_OUT,
    CAIRO_REGION_OVERLAP_PART
} cairo_region_overlap_t;
extern void cairo_append_path(cairo_t * cr, const cairo_path_t * path);
extern void cairo_arc(cairo_t * cr, double xc, double yc, double radius,
		      double angle1, double angle2);
extern void cairo_arc_negative(cairo_t * cr, double xc, double yc,
			       double radius, double angle1,
			       double angle2);
extern void cairo_clip(cairo_t * cr);
extern void cairo_clip_extents(cairo_t * cr, double *x1, double *y1,
			       double *x2, double *y2);
extern void cairo_clip_preserve(cairo_t * cr);
extern void cairo_close_path(cairo_t * cr);
extern cairo_rectangle_list_t *cairo_copy_clip_rectangle_list(cairo_t *
							      cr);
extern void cairo_copy_page(cairo_t * cr);
extern cairo_path_t *cairo_copy_path(cairo_t * cr);
extern cairo_path_t *cairo_copy_path_flat(cairo_t * cr);
extern cairo_t *cairo_create(cairo_surface_t * target);
extern void cairo_curve_to(cairo_t * cr, double x1, double y1, double x2,
			   double y2, double x3, double y3);
extern void cairo_destroy(cairo_t * cr);
extern cairo_status_t cairo_device_acquire(cairo_device_t * device);
extern void cairo_device_destroy(cairo_device_t * device);
extern void cairo_device_finish(cairo_device_t * device);
extern void cairo_device_flush(cairo_device_t * device);
extern unsigned int cairo_device_get_reference_count(cairo_device_t *
						     device);
extern cairo_device_type_t cairo_device_get_type(cairo_device_t * device);
extern void *cairo_device_get_user_data(cairo_device_t * device,
					const cairo_user_data_key_t * key);
extern double cairo_device_observer_elapsed(cairo_device_t * device);
extern double cairo_device_observer_fill_elapsed(cairo_device_t * device);
extern double cairo_device_observer_glyphs_elapsed(cairo_device_t *
						   device);
extern double cairo_device_observer_mask_elapsed(cairo_device_t * device);
extern double cairo_device_observer_paint_elapsed(cairo_device_t * device);
extern cairo_status_t cairo_device_observer_print(cairo_device_t * device,
						  cairo_write_func_t
						  write_func,
						  void *closure);
extern double cairo_device_observer_stroke_elapsed(cairo_device_t *
						   device);
extern cairo_device_t *cairo_device_reference(cairo_device_t * device);
extern void cairo_device_release(cairo_device_t * device);
extern cairo_status_t cairo_device_set_user_data(cairo_device_t * device,
						 const
						 cairo_user_data_key_t *
						 key, void *user_data,
						 cairo_destroy_func_t
						 destroy);
extern cairo_status_t cairo_device_status(cairo_device_t * device);
extern void cairo_device_to_user(cairo_t * cr, double *x, double *y);
extern void cairo_device_to_user_distance(cairo_t * cr, double *dx,
					  double *dy);
extern void cairo_fill(cairo_t * cr);
extern void cairo_fill_extents(cairo_t * cr, double *x1, double *y1,
			       double *x2, double *y2);
extern void cairo_fill_preserve(cairo_t * cr);
extern void cairo_font_extents(cairo_t * cr,
			       cairo_font_extents_t * extents);
extern void cairo_font_face_destroy(cairo_font_face_t * font_face);
extern unsigned int cairo_font_face_get_reference_count(cairo_font_face_t *
							font_face);
extern cairo_font_type_t cairo_font_face_get_type(cairo_font_face_t *
						  font_face);
extern void *cairo_font_face_get_user_data(cairo_font_face_t * font_face,
					   const cairo_user_data_key_t *
					   key);
extern cairo_font_face_t *cairo_font_face_reference(cairo_font_face_t *
						    font_face);
extern cairo_status_t cairo_font_face_set_user_data(cairo_font_face_t *
						    font_face,
						    const
						    cairo_user_data_key_t *
						    key, void *user_data,
						    cairo_destroy_func_t
						    destroy);
extern cairo_status_t cairo_font_face_status(cairo_font_face_t *
					     font_face);
extern cairo_font_options_t *cairo_font_options_copy(const
						     cairo_font_options_t *
						     original);
extern cairo_font_options_t *cairo_font_options_create(void);
extern void cairo_font_options_destroy(cairo_font_options_t * options);
extern cairo_bool_t cairo_font_options_equal(const cairo_font_options_t *
					     options,
					     const cairo_font_options_t *
					     other);
extern cairo_antialias_t cairo_font_options_get_antialias(const
							  cairo_font_options_t
							  * options);
extern cairo_hint_metrics_t cairo_font_options_get_hint_metrics(const
								cairo_font_options_t
								* options);
extern cairo_hint_style_t cairo_font_options_get_hint_style(const
							    cairo_font_options_t
							    * options);
extern cairo_subpixel_order_t cairo_font_options_get_subpixel_order(const
								    cairo_font_options_t
								    *
								    options);
extern long unsigned int cairo_font_options_hash(const cairo_font_options_t
						 * options);
extern void cairo_font_options_merge(cairo_font_options_t * options,
				     const cairo_font_options_t * other);
extern void cairo_font_options_set_antialias(cairo_font_options_t *
					     options,
					     cairo_antialias_t antialias);
extern void cairo_font_options_set_hint_metrics(cairo_font_options_t *
						options,
						cairo_hint_metrics_t
						hint_metrics);
extern void cairo_font_options_set_hint_style(cairo_font_options_t *
					      options,
					      cairo_hint_style_t
					      hint_style);
extern void cairo_font_options_set_subpixel_order(cairo_font_options_t *
						  options,
						  cairo_subpixel_order_t
						  subpixel_order);
extern cairo_status_t cairo_font_options_status(cairo_font_options_t *
						options);
extern int cairo_format_stride_for_width(cairo_format_t format, int width);
extern cairo_antialias_t cairo_get_antialias(cairo_t * cr);
extern void cairo_get_current_point(cairo_t * cr, double *x, double *y);
extern void cairo_get_dash(cairo_t * cr, double *dashes, double *offset);
extern int cairo_get_dash_count(cairo_t * cr);
extern cairo_fill_rule_t cairo_get_fill_rule(cairo_t * cr);
extern cairo_font_face_t *cairo_get_font_face(cairo_t * cr);
extern void cairo_get_font_matrix(cairo_t * cr, cairo_matrix_t * matrix);
extern void cairo_get_font_options(cairo_t * cr,
				   cairo_font_options_t * options);
extern cairo_surface_t *cairo_get_group_target(cairo_t * cr);
extern cairo_line_cap_t cairo_get_line_cap(cairo_t * cr);
extern cairo_line_join_t cairo_get_line_join(cairo_t * cr);
extern double cairo_get_line_width(cairo_t * cr);
extern void cairo_get_matrix(cairo_t * cr, cairo_matrix_t * matrix);
extern double cairo_get_miter_limit(cairo_t * cr);
extern cairo_operator_t cairo_get_operator(cairo_t * cr);
extern unsigned int cairo_get_reference_count(cairo_t * cr);
extern cairo_scaled_font_t *cairo_get_scaled_font(cairo_t * cr);
extern cairo_pattern_t *cairo_get_source(cairo_t * cr);
extern cairo_surface_t *cairo_get_target(cairo_t * cr);
extern double cairo_get_tolerance(cairo_t * cr);
extern void *cairo_get_user_data(cairo_t * cr,
				 const cairo_user_data_key_t * key);
extern cairo_glyph_t *cairo_glyph_allocate(int num_glyphs);
extern void cairo_glyph_extents(cairo_t * cr, const cairo_glyph_t * glyphs,
				int num_glyphs,
				cairo_text_extents_t * extents);
extern void cairo_glyph_free(cairo_glyph_t * glyphs);
extern void cairo_glyph_path(cairo_t * cr, const cairo_glyph_t * glyphs,
			     int num_glyphs);
extern cairo_bool_t cairo_has_current_point(cairo_t * cr);
extern void cairo_identity_matrix(cairo_t * cr);
extern cairo_surface_t *cairo_image_surface_create(cairo_format_t format,
						   int width, int height);
extern cairo_surface_t *cairo_image_surface_create_for_data(unsigned char
							    *data,
							    cairo_format_t
							    format,
							    int width,
							    int height,
							    int stride);
extern cairo_surface_t *cairo_image_surface_create_from_png(const char
							    *filename);
extern cairo_surface_t
    *cairo_image_surface_create_from_png_stream(cairo_read_func_t
						read_func, void *closure);
extern unsigned char *cairo_image_surface_get_data(cairo_surface_t *
						   surface);
extern cairo_format_t cairo_image_surface_get_format(cairo_surface_t *
						     surface);
extern int cairo_image_surface_get_height(cairo_surface_t * surface);
extern int cairo_image_surface_get_stride(cairo_surface_t * surface);
extern int cairo_image_surface_get_width(cairo_surface_t * surface);
extern cairo_bool_t cairo_in_clip(cairo_t * cr, double x, double y);
extern cairo_bool_t cairo_in_fill(cairo_t * cr, double x, double y);
extern cairo_bool_t cairo_in_stroke(cairo_t * cr, double x, double y);
extern void cairo_line_to(cairo_t * cr, double x, double y);
extern void cairo_mask(cairo_t * cr, cairo_pattern_t * pattern);
extern void cairo_mask_surface(cairo_t * cr, cairo_surface_t * surface,
			       double surface_x, double surface_y);
extern void cairo_matrix_init(cairo_matrix_t * matrix, double xx,
			      double yx, double xy, double yy, double x0,
			      double y0);
extern void cairo_matrix_init_identity(cairo_matrix_t * matrix);
extern void cairo_matrix_init_rotate(cairo_matrix_t * matrix,
				     double radians);
extern void cairo_matrix_init_scale(cairo_matrix_t * matrix, double sx,
				    double sy);
extern void cairo_matrix_init_translate(cairo_matrix_t * matrix, double tx,
					double ty);
extern cairo_status_t cairo_matrix_invert(cairo_matrix_t * matrix);
extern void cairo_matrix_multiply(cairo_matrix_t * result,
				  const cairo_matrix_t * a,
				  const cairo_matrix_t * b);
extern void cairo_matrix_rotate(cairo_matrix_t * matrix, double radians);
extern void cairo_matrix_scale(cairo_matrix_t * matrix, double sx,
			       double sy);
extern void cairo_matrix_transform_distance(const cairo_matrix_t * matrix,
					    double *dx, double *dy);
extern void cairo_matrix_transform_point(const cairo_matrix_t * matrix,
					 double *x, double *y);
extern void cairo_matrix_translate(cairo_matrix_t * matrix, double tx,
				   double ty);
extern void cairo_mesh_pattern_begin_patch(cairo_pattern_t * pattern);
extern void cairo_mesh_pattern_curve_to(cairo_pattern_t * pattern,
					double x1, double y1, double x2,
					double y2, double x3, double y3);
extern void cairo_mesh_pattern_end_patch(cairo_pattern_t * pattern);
extern cairo_status_t cairo_mesh_pattern_get_control_point(cairo_pattern_t
							   * pattern,
							   unsigned int
							   patch_num,
							   unsigned int
							   point_num,
							   double *x,
							   double *y);
extern cairo_status_t
cairo_mesh_pattern_get_corner_color_rgba(cairo_pattern_t * pattern,
					 unsigned int patch_num,
					 unsigned int corner_num,
					 double *red, double *green,
					 double *blue, double *alpha);
extern cairo_status_t cairo_mesh_pattern_get_patch_count(cairo_pattern_t *
							 pattern,
							 unsigned int
							 *count);
extern cairo_path_t *cairo_mesh_pattern_get_path(cairo_pattern_t * pattern,
						 unsigned int patch_num);
extern void cairo_mesh_pattern_line_to(cairo_pattern_t * pattern, double x,
				       double y);
extern void cairo_mesh_pattern_move_to(cairo_pattern_t * pattern, double x,
				       double y);
extern void cairo_mesh_pattern_set_control_point(cairo_pattern_t * pattern,
						 unsigned int point_num,
						 double x, double y);
extern void cairo_mesh_pattern_set_corner_color_rgb(cairo_pattern_t *
						    pattern,
						    unsigned int
						    corner_num, double red,
						    double green,
						    double blue);
extern void cairo_mesh_pattern_set_corner_color_rgba(cairo_pattern_t *
						     pattern,
						     unsigned int
						     corner_num,
						     double red,
						     double green,
						     double blue,
						     double alpha);
extern void cairo_move_to(cairo_t * cr, double x, double y);
extern void cairo_new_path(cairo_t * cr);
extern void cairo_new_sub_path(cairo_t * cr);
extern void cairo_paint(cairo_t * cr);
extern void cairo_paint_with_alpha(cairo_t * cr, double alpha);
extern void cairo_path_destroy(cairo_path_t * path);
extern void cairo_path_extents(cairo_t * cr, double *x1, double *y1,
			       double *x2, double *y2);
extern void cairo_pattern_add_color_stop_rgb(cairo_pattern_t * pattern,
					     double offset, double red,
					     double green, double blue);
extern void cairo_pattern_add_color_stop_rgba(cairo_pattern_t * pattern,
					      double offset, double red,
					      double green, double blue,
					      double alpha);
extern cairo_pattern_t *cairo_pattern_create_for_surface(cairo_surface_t *
							 surface);
extern cairo_pattern_t *cairo_pattern_create_linear(double x0, double y0,
						    double x1, double y1);
extern cairo_pattern_t *cairo_pattern_create_mesh(void);
extern cairo_pattern_t *cairo_pattern_create_radial(double cx0, double cy0,
						    double radius0,
						    double cx1, double cy1,
						    double radius1);
extern cairo_pattern_t *cairo_pattern_create_raster_source(void *user_data,
							   cairo_content_t
							   content,
							   int width,
							   int height);
extern cairo_pattern_t *cairo_pattern_create_rgb(double red, double green,
						 double blue);
extern cairo_pattern_t *cairo_pattern_create_rgba(double red, double green,
						  double blue,
						  double alpha);
extern void cairo_pattern_destroy(cairo_pattern_t * pattern);
extern cairo_status_t cairo_pattern_get_color_stop_count(cairo_pattern_t *
							 pattern,
							 int *count);
extern cairo_status_t cairo_pattern_get_color_stop_rgba(cairo_pattern_t *
							pattern, int index,
							double *offset,
							double *red,
							double *green,
							double *blue,
							double *alpha);
extern cairo_extend_t cairo_pattern_get_extend(cairo_pattern_t * pattern);
extern cairo_filter_t cairo_pattern_get_filter(cairo_pattern_t * pattern);
extern cairo_status_t cairo_pattern_get_linear_points(cairo_pattern_t *
						      pattern, double *x0,
						      double *y0,
						      double *x1,
						      double *y1);
extern void cairo_pattern_get_matrix(cairo_pattern_t * pattern,
				     cairo_matrix_t * matrix);
extern cairo_status_t cairo_pattern_get_radial_circles(cairo_pattern_t *
						       pattern, double *x0,
						       double *y0,
						       double *r0,
						       double *x1,
						       double *y1,
						       double *r1);
extern unsigned int cairo_pattern_get_reference_count(cairo_pattern_t *
						      pattern);
extern cairo_status_t cairo_pattern_get_rgba(cairo_pattern_t * pattern,
					     double *red, double *green,
					     double *blue, double *alpha);
extern cairo_status_t cairo_pattern_get_surface(cairo_pattern_t * pattern,
						cairo_surface_t *
						*surface);
extern cairo_pattern_type_t cairo_pattern_get_type(cairo_pattern_t *
						   pattern);
extern void *cairo_pattern_get_user_data(cairo_pattern_t * pattern,
					 const cairo_user_data_key_t *
					 key);
extern cairo_pattern_t *cairo_pattern_reference(cairo_pattern_t * pattern);
extern void cairo_pattern_set_extend(cairo_pattern_t * pattern,
				     cairo_extend_t extend);
extern void cairo_pattern_set_filter(cairo_pattern_t * pattern,
				     cairo_filter_t filter);
extern void cairo_pattern_set_matrix(cairo_pattern_t * pattern,
				     const cairo_matrix_t * matrix);
extern cairo_status_t cairo_pattern_set_user_data(cairo_pattern_t *
						  pattern,
						  const
						  cairo_user_data_key_t *
						  key, void *user_data,
						  cairo_destroy_func_t
						  destroy);
extern cairo_status_t cairo_pattern_status(cairo_pattern_t * pattern);
extern cairo_pattern_t *cairo_pop_group(cairo_t * cr);
extern void cairo_pop_group_to_source(cairo_t * cr);
extern void cairo_push_group(cairo_t * cr);
extern void cairo_push_group_with_content(cairo_t * cr,
					  cairo_content_t content);
extern void cairo_raster_source_pattern_get_acquire(cairo_pattern_t *
						    pattern,
						    cairo_raster_source_acquire_func_t
						    * acquire,
						    cairo_raster_source_release_func_t
						    * release);
extern void *cairo_raster_source_pattern_get_callback_data(cairo_pattern_t
							   * pattern);
extern cairo_raster_source_copy_func_t
cairo_raster_source_pattern_get_copy(cairo_pattern_t * pattern);
extern cairo_raster_source_finish_func_t
cairo_raster_source_pattern_get_finish(cairo_pattern_t * pattern);
extern cairo_raster_source_snapshot_func_t
cairo_raster_source_pattern_get_snapshot(cairo_pattern_t * pattern);
extern void cairo_raster_source_pattern_set_acquire(cairo_pattern_t *
						    pattern,
						    cairo_raster_source_acquire_func_t
						    acquire,
						    cairo_raster_source_release_func_t
						    release);
extern void cairo_raster_source_pattern_set_callback_data(cairo_pattern_t *
							  pattern,
							  void *data);
extern void cairo_raster_source_pattern_set_copy(cairo_pattern_t * pattern,
						 cairo_raster_source_copy_func_t
						 copy);
extern void cairo_raster_source_pattern_set_finish(cairo_pattern_t *
						   pattern,
						   cairo_raster_source_finish_func_t
						   finish);
extern void cairo_raster_source_pattern_set_snapshot(cairo_pattern_t *
						     pattern,
						     cairo_raster_source_snapshot_func_t
						     snapshot);
extern cairo_surface_t *cairo_recording_surface_create(cairo_content_t
						       content,
						       const
						       cairo_rectangle_t *
						       extents);
extern cairo_bool_t cairo_recording_surface_get_extents(cairo_surface_t *
							surface,
							cairo_rectangle_t *
							extents);
extern void cairo_recording_surface_ink_extents(cairo_surface_t * surface,
						double *x0, double *y0,
						double *width,
						double *height);
extern void cairo_rectangle(cairo_t * cr, double x, double y, double width,
			    double height);
extern void cairo_rectangle_list_destroy(cairo_rectangle_list_t *
					 rectangle_list);
extern cairo_t *cairo_reference(cairo_t * cr);
extern cairo_bool_t cairo_region_contains_point(const cairo_region_t *
						region, int x, int y);
extern cairo_region_overlap_t cairo_region_contains_rectangle(const
							      cairo_region_t
							      * region,
							      const
							      cairo_rectangle_int_t
							      * rectangle);
extern cairo_region_t *cairo_region_copy(const cairo_region_t * original);
extern cairo_region_t *cairo_region_create(void);
extern cairo_region_t *cairo_region_create_rectangle(const
						     cairo_rectangle_int_t
						     * rectangle);
extern cairo_region_t *cairo_region_create_rectangles(const
						      cairo_rectangle_int_t
						      * rects, int count);
extern void cairo_region_destroy(cairo_region_t * region);
extern cairo_bool_t cairo_region_equal(const cairo_region_t * a,
				       const cairo_region_t * b);
extern void cairo_region_get_extents(const cairo_region_t * region,
				     cairo_rectangle_int_t * extents);
extern void cairo_region_get_rectangle(const cairo_region_t * region,
				       int nth,
				       cairo_rectangle_int_t * rectangle);
extern cairo_status_t cairo_region_intersect(cairo_region_t * dst,
					     const cairo_region_t * other);
extern cairo_status_t cairo_region_intersect_rectangle(cairo_region_t *
						       dst,
						       const
						       cairo_rectangle_int_t
						       * rectangle);
extern cairo_bool_t cairo_region_is_empty(const cairo_region_t * region);
extern int cairo_region_num_rectangles(const cairo_region_t * region);
extern cairo_region_t *cairo_region_reference(cairo_region_t * region);
extern cairo_status_t cairo_region_status(const cairo_region_t * region);
extern cairo_status_t cairo_region_subtract(cairo_region_t * dst,
					    const cairo_region_t * other);
extern cairo_status_t cairo_region_subtract_rectangle(cairo_region_t * dst,
						      const
						      cairo_rectangle_int_t
						      * rectangle);
extern void cairo_region_translate(cairo_region_t * region, int dx,
				   int dy);
extern cairo_status_t cairo_region_union(cairo_region_t * dst,
					 const cairo_region_t * other);
extern cairo_status_t cairo_region_union_rectangle(cairo_region_t * dst,
						   const
						   cairo_rectangle_int_t *
						   rectangle);
extern cairo_status_t cairo_region_xor(cairo_region_t * dst,
				       const cairo_region_t * other);
extern cairo_status_t cairo_region_xor_rectangle(cairo_region_t * dst,
						 const
						 cairo_rectangle_int_t *
						 rectangle);
extern void cairo_rel_curve_to(cairo_t * cr, double dx1, double dy1,
			       double dx2, double dy2, double dx3,
			       double dy3);
extern void cairo_rel_line_to(cairo_t * cr, double dx, double dy);
extern void cairo_rel_move_to(cairo_t * cr, double dx, double dy);
extern void cairo_reset_clip(cairo_t * cr);
extern void cairo_restore(cairo_t * cr);
extern void cairo_rotate(cairo_t * cr, double angle);
extern void cairo_save(cairo_t * cr);
extern void cairo_scale(cairo_t * cr, double sx, double sy);
extern cairo_scaled_font_t *cairo_scaled_font_create(cairo_font_face_t *
						     font_face,
						     const cairo_matrix_t *
						     font_matrix,
						     const cairo_matrix_t *
						     ctm,
						     const
						     cairo_font_options_t *
						     options);
extern void cairo_scaled_font_destroy(cairo_scaled_font_t * scaled_font);
extern void cairo_scaled_font_extents(cairo_scaled_font_t * scaled_font,
				      cairo_font_extents_t * extents);
extern void cairo_scaled_font_get_ctm(cairo_scaled_font_t * scaled_font,
				      cairo_matrix_t * ctm);
extern cairo_font_face_t
    *cairo_scaled_font_get_font_face(cairo_scaled_font_t * scaled_font);
extern void cairo_scaled_font_get_font_matrix(cairo_scaled_font_t *
					      scaled_font,
					      cairo_matrix_t *
					      font_matrix);
extern void cairo_scaled_font_get_font_options(cairo_scaled_font_t *
					       scaled_font,
					       cairo_font_options_t *
					       options);
extern unsigned int
cairo_scaled_font_get_reference_count(cairo_scaled_font_t * scaled_font);
extern void cairo_scaled_font_get_scale_matrix(cairo_scaled_font_t *
					       scaled_font,
					       cairo_matrix_t *
					       scale_matrix);
extern cairo_font_type_t cairo_scaled_font_get_type(cairo_scaled_font_t *
						    scaled_font);
extern void *cairo_scaled_font_get_user_data(cairo_scaled_font_t *
					     scaled_font,
					     const cairo_user_data_key_t *
					     key);
extern void cairo_scaled_font_glyph_extents(cairo_scaled_font_t *
					    scaled_font,
					    const cairo_glyph_t * glyphs,
					    int num_glyphs,
					    cairo_text_extents_t *
					    extents);
extern cairo_scaled_font_t *cairo_scaled_font_reference(cairo_scaled_font_t
							* scaled_font);
extern cairo_status_t cairo_scaled_font_set_user_data(cairo_scaled_font_t *
						      scaled_font,
						      const
						      cairo_user_data_key_t
						      * key,
						      void *user_data,
						      cairo_destroy_func_t
						      destroy);
extern cairo_status_t cairo_scaled_font_status(cairo_scaled_font_t *
					       scaled_font);
extern void cairo_scaled_font_text_extents(cairo_scaled_font_t *
					   scaled_font, const char *utf8,
					   cairo_text_extents_t * extents);
extern cairo_status_t cairo_scaled_font_text_to_glyphs(cairo_scaled_font_t
						       * scaled_font,
						       double x, double y,
						       const char *utf8,
						       int utf8_len,
						       cairo_glyph_t *
						       *glyphs,
						       int *num_glyphs,
						       cairo_text_cluster_t
						       * *clusters,
						       int *num_clusters,
						       cairo_text_cluster_flags_t
						       * cluster_flags);
extern void cairo_select_font_face(cairo_t * cr, const char *family,
				   cairo_font_slant_t slant,
				   cairo_font_weight_t weight);
extern void cairo_set_antialias(cairo_t * cr, cairo_antialias_t antialias);
extern void cairo_set_dash(cairo_t * cr, const double *dashes,
			   int num_dashes, double offset);
extern void cairo_set_fill_rule(cairo_t * cr, cairo_fill_rule_t fill_rule);
extern void cairo_set_font_face(cairo_t * cr,
				cairo_font_face_t * font_face);
extern void cairo_set_font_matrix(cairo_t * cr,
				  const cairo_matrix_t * matrix);
extern void cairo_set_font_options(cairo_t * cr,
				   const cairo_font_options_t * options);
extern void cairo_set_font_size(cairo_t * cr, double size);
extern void cairo_set_line_cap(cairo_t * cr, cairo_line_cap_t line_cap);
extern void cairo_set_line_join(cairo_t * cr, cairo_line_join_t line_join);
extern void cairo_set_line_width(cairo_t * cr, double width);
extern void cairo_set_matrix(cairo_t * cr, const cairo_matrix_t * matrix);
extern void cairo_set_miter_limit(cairo_t * cr, double limit);
extern void cairo_set_operator(cairo_t * cr, cairo_operator_t op);
extern void cairo_set_scaled_font(cairo_t * cr,
				  const cairo_scaled_font_t * scaled_font);
extern void cairo_set_source(cairo_t * cr, cairo_pattern_t * source);
extern void cairo_set_source_rgb(cairo_t * cr, double red, double green,
				 double blue);
extern void cairo_set_source_rgba(cairo_t * cr, double red, double green,
				  double blue, double alpha);
extern void cairo_set_source_surface(cairo_t * cr,
				     cairo_surface_t * surface, double x,
				     double y);
extern void cairo_set_tolerance(cairo_t * cr, double tolerance);
extern cairo_status_t cairo_set_user_data(cairo_t * cr,
					  const cairo_user_data_key_t *
					  key, void *user_data,
					  cairo_destroy_func_t destroy);
extern void cairo_show_glyphs(cairo_t * cr, const cairo_glyph_t * glyphs,
			      int num_glyphs);
extern void cairo_show_page(cairo_t * cr);
extern void cairo_show_text(cairo_t * cr, const char *utf8);
extern void cairo_show_text_glyphs(cairo_t * cr, const char *utf8,
				   int utf8_len,
				   const cairo_glyph_t * glyphs,
				   int num_glyphs,
				   const cairo_text_cluster_t * clusters,
				   int num_clusters,
				   cairo_text_cluster_flags_t
				   cluster_flags);
extern cairo_status_t cairo_status(cairo_t * cr);
extern const char *cairo_status_to_string(cairo_status_t status);
extern void cairo_stroke(cairo_t * cr);
extern void cairo_stroke_extents(cairo_t * cr, double *x1, double *y1,
				 double *x2, double *y2);
extern void cairo_stroke_preserve(cairo_t * cr);
extern void cairo_surface_copy_page(cairo_surface_t * surface);
extern cairo_surface_t *cairo_surface_create_for_rectangle(cairo_surface_t
							   * target,
							   double x,
							   double y,
							   double width,
							   double height);
extern cairo_surface_t *cairo_surface_create_observer(cairo_surface_t *
						      target,
						      cairo_surface_observer_mode_t
						      mode);
extern cairo_surface_t *cairo_surface_create_similar(cairo_surface_t *
						     other,
						     cairo_content_t
						     content, int width,
						     int height);
extern cairo_surface_t *cairo_surface_create_similar_image(cairo_surface_t
							   * other,
							   cairo_format_t
							   format,
							   int width,
							   int height);
extern void cairo_surface_destroy(cairo_surface_t * surface);
extern void cairo_surface_finish(cairo_surface_t * surface);
extern void cairo_surface_flush(cairo_surface_t * surface);
extern cairo_content_t cairo_surface_get_content(cairo_surface_t *
						 surface);
extern cairo_device_t *cairo_surface_get_device(cairo_surface_t * surface);
extern void cairo_surface_get_device_offset(cairo_surface_t * surface,
					    double *x_offset,
					    double *y_offset);
extern void cairo_surface_get_fallback_resolution(cairo_surface_t *
						  surface,
						  double
						  *x_pixels_per_inch,
						  double
						  *y_pixels_per_inch);
extern void cairo_surface_get_font_options(cairo_surface_t * surface,
					   cairo_font_options_t * options);
extern void cairo_surface_get_mime_data(cairo_surface_t * surface,
					const char *mime_type,
					const unsigned char **data,
					unsigned long int *length);
extern unsigned int cairo_surface_get_reference_count(cairo_surface_t *
						      surface);
extern cairo_surface_type_t cairo_surface_get_type(cairo_surface_t *
						   surface);
extern void *cairo_surface_get_user_data(cairo_surface_t * surface,
					 const cairo_user_data_key_t *
					 key);
extern cairo_bool_t cairo_surface_has_show_text_glyphs(cairo_surface_t *
						       surface);
extern cairo_surface_t *cairo_surface_map_to_image(cairo_surface_t *
						   surface,
						   const
						   cairo_rectangle_int_t *
						   extents);
extern void cairo_surface_mark_dirty(cairo_surface_t * surface);
extern void cairo_surface_mark_dirty_rectangle(cairo_surface_t * surface,
					       int x, int y, int width,
					       int height);
extern cairo_status_t
cairo_surface_observer_add_fill_callback(cairo_surface_t *
					 abstract_surface,
					 cairo_surface_observer_callback_t
					 func, void *data);
extern cairo_status_t
cairo_surface_observer_add_finish_callback(cairo_surface_t *
					   abstract_surface,
					   cairo_surface_observer_callback_t
					   func, void *data);
extern cairo_status_t
cairo_surface_observer_add_flush_callback(cairo_surface_t *
					  abstract_surface,
					  cairo_surface_observer_callback_t
					  func, void *data);
extern cairo_status_t
cairo_surface_observer_add_glyphs_callback(cairo_surface_t *
					   abstract_surface,
					   cairo_surface_observer_callback_t
					   func, void *data);
extern cairo_status_t
cairo_surface_observer_add_mask_callback(cairo_surface_t *
					 abstract_surface,
					 cairo_surface_observer_callback_t
					 func, void *data);
extern cairo_status_t
cairo_surface_observer_add_paint_callback(cairo_surface_t *
					  abstract_surface,
					  cairo_surface_observer_callback_t
					  func, void *data);
extern cairo_status_t
cairo_surface_observer_add_stroke_callback(cairo_surface_t *
					   abstract_surface,
					   cairo_surface_observer_callback_t
					   func, void *data);
extern double cairo_surface_observer_elapsed(cairo_surface_t * surface);
extern cairo_status_t cairo_surface_observer_print(cairo_surface_t *
						   surface,
						   cairo_write_func_t
						   write_func,
						   void *closure);
extern cairo_surface_t *cairo_surface_reference(cairo_surface_t * surface);
extern void cairo_surface_set_device_offset(cairo_surface_t * surface,
					    double x_offset,
					    double y_offset);
extern void cairo_surface_set_fallback_resolution(cairo_surface_t *
						  surface,
						  double x_pixels_per_inch,
						  double
						  y_pixels_per_inch);
extern cairo_status_t cairo_surface_set_mime_data(cairo_surface_t *
						  surface,
						  const char *mime_type,
						  const unsigned char
						  *data,
						  unsigned long int length,
						  cairo_destroy_func_t
						  destroy, void *closure);
extern cairo_status_t cairo_surface_set_user_data(cairo_surface_t *
						  surface,
						  const
						  cairo_user_data_key_t *
						  key, void *user_data,
						  cairo_destroy_func_t
						  destroy);
extern void cairo_surface_show_page(cairo_surface_t * surface);
extern cairo_status_t cairo_surface_status(cairo_surface_t * surface);
extern cairo_bool_t cairo_surface_supports_mime_type(cairo_surface_t *
						     surface,
						     const char
						     *mime_type);
extern void cairo_surface_unmap_image(cairo_surface_t * surface,
				      cairo_surface_t * image);
extern cairo_status_t cairo_surface_write_to_png(cairo_surface_t * surface,
						 const char *filename);
extern cairo_status_t cairo_surface_write_to_png_stream(cairo_surface_t *
							surface,
							cairo_write_func_t
							write_func,
							void *closure);
extern cairo_text_cluster_t *cairo_text_cluster_allocate(int num_clusters);
extern void cairo_text_cluster_free(cairo_text_cluster_t * clusters);
extern void cairo_text_extents(cairo_t * cr, const char *utf8,
			       cairo_text_extents_t * extents);
extern void cairo_text_path(cairo_t * cr, const char *utf8);
extern cairo_font_face_t *cairo_toy_font_face_create(const char *family,
						     cairo_font_slant_t
						     slant,
						     cairo_font_weight_t
						     weight);
extern const char *cairo_toy_font_face_get_family(cairo_font_face_t *
						  font_face);
extern cairo_font_slant_t cairo_toy_font_face_get_slant(cairo_font_face_t *
							font_face);
extern cairo_font_weight_t cairo_toy_font_face_get_weight(cairo_font_face_t
							  * font_face);
extern void cairo_transform(cairo_t * cr, const cairo_matrix_t * matrix);
extern void cairo_translate(cairo_t * cr, double tx, double ty);
extern cairo_font_face_t *cairo_user_font_face_create(void);
extern cairo_user_scaled_font_init_func_t
cairo_user_font_face_get_init_func(cairo_font_face_t * font_face);
extern cairo_user_scaled_font_render_glyph_func_t
cairo_user_font_face_get_render_glyph_func(cairo_font_face_t * font_face);
extern cairo_user_scaled_font_text_to_glyphs_func_t
cairo_user_font_face_get_text_to_glyphs_func(cairo_font_face_t *
					     font_face);
extern cairo_user_scaled_font_unicode_to_glyph_func_t
cairo_user_font_face_get_unicode_to_glyph_func(cairo_font_face_t *
					       font_face);
extern void cairo_user_font_face_set_init_func(cairo_font_face_t *
					       font_face,
					       cairo_user_scaled_font_init_func_t
					       init_func);
extern void cairo_user_font_face_set_render_glyph_func(cairo_font_face_t *
						       font_face,
						       cairo_user_scaled_font_render_glyph_func_t
						       render_glyph_func);
extern void cairo_user_font_face_set_text_to_glyphs_func(cairo_font_face_t
							 * font_face,
							 cairo_user_scaled_font_text_to_glyphs_func_t
							 text_to_glyphs_func);
extern void
cairo_user_font_face_set_unicode_to_glyph_func(cairo_font_face_t *
					       font_face,
					       cairo_user_scaled_font_unicode_to_glyph_func_t
					       unicode_to_glyph_func);
extern void cairo_user_to_device(cairo_t * cr, double *x, double *y);
extern void cairo_user_to_device_distance(cairo_t * cr, double *dx,
					  double *dy);
extern int cairo_version(void);
extern const char *cairo_version_string(void);