summaryrefslogtreecommitdiff
path: root/include/freetype/svgrenderer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/freetype/svgrenderer.h')
-rw-r--r--include/freetype/svgrenderer.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/freetype/svgrenderer.h b/include/freetype/svgrenderer.h
index 1ab23aa02..57ea36507 100644
--- a/include/freetype/svgrenderer.h
+++ b/include/freetype/svgrenderer.h
@@ -148,6 +148,38 @@ FT_BEGIN_HEADER
SVG_Lib_Free free_hook,
SVG_Lib_Render render_hook );
+ /**************************************************************************
+ *
+ * @struct:
+ * FT_SVG_DocumentRec_
+ *
+ * @description:
+ * A structure that models one SVG document.
+ *
+ * @fields:
+ * svg_document ::
+ * A pointer to the SVG document string.
+ *
+ * svg_document_length ::
+ * The length of the SVG document string.
+ */
+
+ typedef struct FT_SVG_DocumentRec_
+ {
+ FT_Byte* svg_document;
+ FT_ULong svg_document_length;
+ } FT_SVG_DocumentRec;
+
+ /**************************************************************************
+ *
+ * @type:
+ * FT_SVG_Document
+ *
+ * @description:
+ * A handle to a FT_SVG_DocumentRec object.
+ */
+ typedef struct FT_SVG_DocumentRec_* FT_SVG_Document;
+
FT_END_HEADER
#endif