summaryrefslogtreecommitdiff
path: root/src/cairo.h
diff options
context:
space:
mode:
authorAdrian Johnson <ajohnson@redneon.com>2016-03-26 21:45:33 +1030
committerAdrian Johnson <ajohnson@redneon.com>2016-03-26 21:45:59 +1030
commitcdd5c92cedb9abcedd6f261594b1ea7d94d4a4ad (patch)
tree134cdf776bb38844378eff7826684c8206afb45f /src/cairo.h
parent8f6790123e05c5c38ba09c541093b747aa12b681 (diff)
downloadcairo-cdd5c92cedb9abcedd6f261594b1ea7d94d4a4ad.tar.gz
Add CAIRO_STATUS_FREETYPE_ERROR for errors returned by libfreetype
Diffstat (limited to 'src/cairo.h')
-rw-r--r--src/cairo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cairo.h b/src/cairo.h
index a1808bd8e..1d2f418e5 100644
--- a/src/cairo.h
+++ b/src/cairo.h
@@ -293,6 +293,7 @@ typedef struct _cairo_user_data_key {
* @CAIRO_STATUS_JBIG2_GLOBAL_MISSING: %CAIRO_MIME_TYPE_JBIG2_GLOBAL_ID has been used on at least one image
* but no image provided %CAIRO_MIME_TYPE_JBIG2_GLOBAL (Since 1.14)
* @CAIRO_STATUS_PNG_ERROR: error occurred in libpng while reading from or writing to a PNG file (Since 1.16)
+ * @CAIRO_STATUS_FREETYPE_ERROR: error occurred in libfreetype (Since 1.16)
* @CAIRO_STATUS_LAST_STATUS: this is a special value indicating the number of
* status values defined in this enumeration. When using this value, note
* that the version of cairo at run-time may have additional status values
@@ -350,6 +351,7 @@ typedef enum _cairo_status {
CAIRO_STATUS_DEVICE_FINISHED,
CAIRO_STATUS_JBIG2_GLOBAL_MISSING,
CAIRO_STATUS_PNG_ERROR,
+ CAIRO_STATUS_FREETYPE_ERROR,
CAIRO_STATUS_LAST_STATUS
} cairo_status_t;