diff options
author | Carl Worth <cworth@cworth.org> | 2005-09-07 16:31:22 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-09-07 16:31:22 +0000 |
commit | 63c208d83d4a6e66ee2b15af8e1cd92ed67626b9 (patch) | |
tree | 067c66d5e427e2f46cf764743d5e824f2e9cbab4 /src/cairo-xcb.h | |
parent | 05c0c98aee3c67f7a708ad9bfb248ae5c4066312 (diff) |
Give cairo_public an empty definition by default.
Add new cairo_public macro before every public function call prototype.
Diffstat (limited to 'src/cairo-xcb.h')
-rw-r--r-- | src/cairo-xcb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-xcb.h b/src/cairo-xcb.h index 17dfafa0..a39d7b60 100644 --- a/src/cairo-xcb.h +++ b/src/cairo-xcb.h @@ -45,20 +45,20 @@ CAIRO_BEGIN_DECLS -cairo_surface_t * +cairo_public cairo_surface_t * cairo_xcb_surface_create (XCBConnection *c, XCBDRAWABLE drawable, XCBVISUALTYPE *visual, int width, int height); -cairo_surface_t * +cairo_public cairo_surface_t * cairo_xcb_surface_create_for_bitmap (XCBConnection *c, XCBPIXMAP bitmap, int width, int height); -void +cairo_public void cairo_xcb_surface_set_size (cairo_surface_t *surface, int width, int height); |