summaryrefslogtreecommitdiff
path: root/src/cairo-scaled-font-subsets-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:48:48 -0500
committerBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:48:48 -0500
commit9ecde82d35ead4975ce110bb2012264e3ca9d2e1 (patch)
tree319367b5d3ea15e10f3e12090ccb1134d0cf53c8 /src/cairo-scaled-font-subsets-private.h
parent099c3c2602b59fbf9424044caa1fec7eb92f71df (diff)
downloadcairo-9ecde82d35ead4975ce110bb2012264e3ca9d2e1.tar.gz
[doc] Make sure all macro names in docs are prefixed by %
Diffstat (limited to 'src/cairo-scaled-font-subsets-private.h')
-rw-r--r--src/cairo-scaled-font-subsets-private.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/cairo-scaled-font-subsets-private.h b/src/cairo-scaled-font-subsets-private.h
index f80257bc2..b42e27786 100644
--- a/src/cairo-scaled-font-subsets-private.h
+++ b/src/cairo-scaled-font-subsets-private.h
@@ -178,7 +178,7 @@ _cairo_scaled_font_subsets_destroy (cairo_scaled_font_subsets_t *font_subsets);
* @x_advance: When @is_scaled is true, @x_advance contains the x_advance for the mapped glyph in device space.
* When @is_scaled is false, @x_advance contains the x_advance for the the mapped glyph from an unhinted 1 point font.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful, or a non-zero
+ * Return value: %CAIRO_STATUS_SUCCESS if successful, or a non-zero
* value indicating an error. Possible errors include
* CAIRO_STATUS_NO_MEMORY.
**/
@@ -218,7 +218,7 @@ typedef cairo_status_t
* values of the array correspond to the scaled_font_glyph_index
* values passed as input to the same function.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful, or a non-zero
+ * Return value: %CAIRO_STATUS_SUCCESS if successful, or a non-zero
* value indicating an error. Possible errors include
* CAIRO_STATUS_NO_MEMORY.
**/
@@ -253,7 +253,7 @@ _cairo_scaled_font_subsets_foreach_scaled (cairo_scaled_font_subsets_t *fon
* values of the array correspond to the scaled_font_glyph_index
* values passed as input to the same function.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful, or a non-zero
+ * Return value: %CAIRO_STATUS_SUCCESS if successful, or a non-zero
* value indicating an error. Possible errors include
* CAIRO_STATUS_NO_MEMORY.
**/
@@ -269,10 +269,10 @@ _cairo_scaled_font_subsets_foreach_unscaled (cairo_scaled_font_subsets_t
* Create an array of strings containing the glyph name for each glyph
* in @font_subsets. The array as store in font_subsets->glyph_names.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font backend does not support
* mapping the glyph indices to unicode characters. Possible errors
- * include CAIRO_STATUS_NO_MEMORY.
+ * include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_int_status_t
_cairo_scaled_font_subset_create_glyph_names (cairo_scaled_font_subset_t *subset);
@@ -297,10 +297,10 @@ typedef struct _cairo_cff_subset {
* @cff_subset with information about the subset and the cff
* data.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font can't be subset as a
* cff file, or an non-zero value indicating an error. Possible
- * errors include CAIRO_STATUS_NO_MEMORY.
+ * errors include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_status_t
_cairo_cff_subset_init (cairo_cff_subset_t *cff_subset,
@@ -328,10 +328,10 @@ _cairo_cff_subset_fini (cairo_cff_subset_t *cff_subset);
* file corresponding to @font_subset and initialize @cff_subset
* with information about the subset and the cff data.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font can't be subset as a
* cff file, or an non-zero value indicating an error. Possible
- * errors include CAIRO_STATUS_NO_MEMORY.
+ * errors include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_status_t
_cairo_cff_fallback_init (cairo_cff_subset_t *cff_subset,
@@ -371,10 +371,10 @@ typedef struct _cairo_truetype_subset {
* @truetype_subset with information about the subset and the truetype
* data.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font can't be subset as a
* truetype file, or an non-zero value indicating an error. Possible
- * errors include CAIRO_STATUS_NO_MEMORY.
+ * errors include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_status_t
_cairo_truetype_subset_init (cairo_truetype_subset_t *truetype_subset,
@@ -415,10 +415,10 @@ typedef struct _cairo_type1_subset {
* file corresponding to @font_subset and initialize @type1_subset
* with information about the subset and the type1 data.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font can't be subset as a type1
* file, or an non-zero value indicating an error. Possible errors
- * include CAIRO_STATUS_NO_MEMORY.
+ * include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_status_t
_cairo_type1_subset_init (cairo_type1_subset_t *type_subset,
@@ -441,7 +441,7 @@ _cairo_type1_subset_fini (cairo_type1_subset_t *subset);
* _cairo_type1_scaled_font_is_type1:
* @scaled_font: a #cairo_scaled_font_t
*
- * Return TRUE if @scaled_font is a Type 1 font, otherwise return FALSE.
+ * Return %TRUE if @scaled_font is a Type 1 font, otherwise return %FALSE.
**/
cairo_private cairo_bool_t
_cairo_type1_scaled_font_is_type1 (cairo_scaled_font_t *scaled_font);
@@ -457,10 +457,10 @@ _cairo_type1_scaled_font_is_type1 (cairo_scaled_font_t *scaled_font);
* with information about the subset and the type1 data. The encrypted
* part of the font is binary encoded.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font can't be subset as a type1
* file, or an non-zero value indicating an error. Possible errors
- * include CAIRO_STATUS_NO_MEMORY.
+ * include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_status_t
_cairo_type1_fallback_init_binary (cairo_type1_subset_t *type_subset,
@@ -478,10 +478,10 @@ _cairo_type1_fallback_init_binary (cairo_type1_subset_t *type_subset,
* with information about the subset and the type1 data. The encrypted
* part of the font is hex encoded.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font can't be subset as a type1
* file, or an non-zero value indicating an error. Possible errors
- * include CAIRO_STATUS_NO_MEMORY.
+ * include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_status_t
_cairo_type1_fallback_init_hex (cairo_type1_subset_t *type_subset,
@@ -516,10 +516,10 @@ typedef struct _cairo_type2_charstrings {
* charstrings to @font_subset and initialize @type2_subset
* with information about the subset.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the font can't be subset as a type2
* charstrings, or an non-zero value indicating an error. Possible errors
- * include CAIRO_STATUS_NO_MEMORY.
+ * include %CAIRO_STATUS_NO_MEMORY.
**/
cairo_private cairo_status_t
_cairo_type2_charstrings_init (cairo_type2_charstrings_t *charstrings,
@@ -545,7 +545,7 @@ _cairo_type2_charstrings_fini (cairo_type2_charstrings_t *charstrings);
* the unicode character of each glyph in font_subset to
* fontsubset->to_unicode.
*
- * Return value: CAIRO_STATUS_SUCCESS if successful,
+ * Return value: %CAIRO_STATUS_SUCCESS if successful,
* CAIRO_INT_STATUS_UNSUPPORTED if the unicode encoding of
* the glyphs is not available. Possible errors include
* CAIRO_STATUS_NO_MEMORY.