mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 20:48:03 +02:00
fix make check
This commit is contained in:
parent
23fd706bd1
commit
3c33d97041
4 changed files with 9 additions and 5 deletions
|
|
@ -344,7 +344,7 @@ cairo_private void
|
|||
_cairo_pdf_surface_update_object (cairo_pdf_surface_t *surface,
|
||||
cairo_pdf_resource_t resource);
|
||||
|
||||
cairo_int_status_t
|
||||
cairo_private cairo_int_status_t
|
||||
_cairo_utf8_to_pdf_string (const char *utf8, char **str_out);
|
||||
|
||||
cairo_private cairo_int_status_t
|
||||
|
|
|
|||
|
|
@ -139,16 +139,16 @@ typedef enum _cairo_pdf_metadata {
|
|||
CAIRO_PDF_METADATA_MOD_DATE,
|
||||
} cairo_pdf_metadata_t;
|
||||
|
||||
void
|
||||
cairo_public void
|
||||
cairo_pdf_surface_set_metadata (cairo_surface_t *surface,
|
||||
cairo_pdf_metadata_t metadata,
|
||||
const char *utf8);
|
||||
|
||||
void
|
||||
cairo_public void
|
||||
cairo_pdf_surface_set_page_label (cairo_surface_t *surface,
|
||||
const char *utf8);
|
||||
|
||||
void
|
||||
cairo_public void
|
||||
cairo_pdf_surface_set_thumbnail_size (cairo_surface_t *surface,
|
||||
int width,
|
||||
int height);
|
||||
|
|
|
|||
|
|
@ -37,6 +37,9 @@
|
|||
#ifndef CAIRO_TAG_ATTRIBUTES_PRIVATE_H
|
||||
#define CAIRO_TAG_ATTRIBUTES_PRIVATE_H
|
||||
|
||||
#include "cairo-array-private.h"
|
||||
#include "cairo-error-private.h"
|
||||
|
||||
typedef enum {
|
||||
TAG_LINK_INVALID = 0,
|
||||
TAG_LINK_EMPTY,
|
||||
|
|
@ -47,7 +50,7 @@ typedef enum {
|
|||
|
||||
typedef struct _cairo_link_attrs {
|
||||
cairo_tag_link_type_t link_type;
|
||||
cairo_array_t rects; /* array of cairo_rectangle_t */
|
||||
cairo_array_t rects;
|
||||
char *dest;
|
||||
char *uri;
|
||||
char *file;
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@
|
|||
#ifndef CAIRO_TAG_STACK_PRIVATE_H
|
||||
#define CAIRO_TAG_STACK_PRIVATE_H
|
||||
|
||||
#include "cairo-error-private.h"
|
||||
#include "cairo-list-inline.h"
|
||||
|
||||
/* The type of a single tag */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue