diff options
author | Carl Worth <cworth@cworth.org> | 2005-08-10 06:52:40 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-08-10 06:52:40 +0000 |
commit | 52ec34a157d0d0ef5af49f767a50672b84ebb9e6 (patch) | |
tree | e25b4964ea41e0a09fb097d38d1a5d6fcae60946 | |
parent | 8042a0d219131acfbeb6ed54b078ad2bc26ccbef (diff) |
Add cairo_private to the few pieces of data that were missing it.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/cairo-path-data-private.h | 2 | ||||
-rw-r--r-- | src/cairoint.h | 12 |
3 files changed, 13 insertions, 7 deletions
@@ -1,3 +1,9 @@ +2005-08-10 Carl Worth <cworth@cworth.org> + + * src/cairo-path-data-private.h: + * src/cairoint.h: Add cairo_private to the few pieces of data that + were missing it. + 2005-08-09 Vladimir Vukicevic <vladimir@pobox.com> * src/cairo-glitz-surface.c: Don't crash on 0-width or 0-height diff --git a/src/cairo-path-data-private.h b/src/cairo-path-data-private.h index 06ab187d..3208bc1d 100644 --- a/src/cairo-path-data-private.h +++ b/src/cairo-path-data-private.h @@ -38,7 +38,7 @@ #include "cairoint.h" -extern cairo_private const cairo_path_t _cairo_path_nil; +extern const cairo_private cairo_path_t _cairo_path_nil; cairo_private cairo_path_t * _cairo_path_data_create (cairo_path_fixed_t *path, diff --git a/src/cairoint.h b/src/cairoint.h index 126be36f..0a93ee6c 100644 --- a/src/cairoint.h +++ b/src/cairoint.h @@ -893,7 +893,7 @@ struct _cairo_image_surface { pixman_image_t *pixman_image; }; -extern const cairo_surface_backend_t cairo_image_surface_backend; +extern const cairo_private cairo_surface_backend_t cairo_image_surface_backend; /* XXX: Right now, the cairo_color structure puts unpremultiplied color in the doubles and premultiplied color in the shorts. Yes, @@ -948,7 +948,7 @@ typedef struct _cairo_solid_pattern { cairo_color_t color; } cairo_solid_pattern_t; -extern const cairo_solid_pattern_t cairo_solid_pattern_nil; +extern const cairo_private cairo_solid_pattern_t cairo_solid_pattern_nil; typedef struct _cairo_surface_pattern { cairo_pattern_t base; @@ -1363,7 +1363,7 @@ cairo_private void _cairo_scaled_font_set_error (cairo_scaled_font_t *scaled_font, cairo_status_t status); -extern const cairo_font_face_t _cairo_font_face_nil; +extern const cairo_private cairo_font_face_t _cairo_font_face_nil; cairo_private void _cairo_font_face_init (cairo_font_face_t *font_face, @@ -1543,9 +1543,9 @@ _cairo_path_fixed_stroke_to_traps (cairo_path_fixed_t *path, /* cairo-surface.c */ -extern const cairo_surface_t _cairo_surface_nil; -extern const cairo_surface_t _cairo_surface_nil_read_error; -extern const cairo_surface_t _cairo_surface_nil_file_not_found; +extern const cairo_private cairo_surface_t _cairo_surface_nil; +extern const cairo_private cairo_surface_t _cairo_surface_nil_read_error; +extern const cairo_private cairo_surface_t _cairo_surface_nil_file_not_found; cairo_private cairo_surface_t * _cairo_surface_create_similar_scratch (cairo_surface_t *other, |