[paginated] Move cairo_paginated_mode_t to cairo-types-private.h

as it is used in surface structs for PS/PDF/SVG and we will need
it.
This commit is contained in:
Behdad Esfahbod 2007-04-20 02:30:46 -04:00
parent cd72167ede
commit 183c6af4f1
2 changed files with 5 additions and 5 deletions

View file

@ -38,11 +38,6 @@
#include "cairoint.h"
typedef enum {
CAIRO_PAGINATED_MODE_ANALYZE, /* analyze page regions */
CAIRO_PAGINATED_MODE_RENDER /* render page contents */
} cairo_paginated_mode_t;
typedef struct _cairo_paginated_surface_backend {
/* Optional. Will be called once for each page.
*

View file

@ -62,4 +62,9 @@ typedef struct _cairo_clip cairo_clip_t;
typedef struct _cairo_xlib_screen_info cairo_xlib_screen_info_t;
typedef enum {
CAIRO_PAGINATED_MODE_ANALYZE, /* analyze page regions */
CAIRO_PAGINATED_MODE_RENDER /* render page contents */
} cairo_paginated_mode_t;
#endif /* CAIRO_TYPES_PRIVATE_H */