aboutsummaryrefslogtreecommitdiff
path: root/fbwarn/src/parseBVG.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--fbwarn/src/parseBVG.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/fbwarn/src/parseBVG.h b/fbwarn/src/parseBVG.h
index 1a90c78..120763a 100644
--- a/fbwarn/src/parseBVG.h
+++ b/fbwarn/src/parseBVG.h
@@ -19,6 +19,13 @@ void BVGDrawRectangle(BVGRectangle *rectangle);
BVGRoundedRectangle *BVGParseRoundedRectangle(char *argv[9]);
void BVGDrawRoundedRectangle(BVGRoundedRectangle *rectangle);
BVGCircle *BVGParseCircle(char *argv[4]);
+BVGCircle *BVGParseCircleSegment(char *argv[7]);
void BVGDrawCircle(BVGCircle *circle);
BVGRing *BVGParseRing(char *argv[8]);
void BVGDrawRing(BVGRing *ring);
+BVGEllipse *BVGParseEllipse(char *argv[6]);
+void BVGDrawEllipse(BVGEllipse *ellipse);
+BVGTriangle *BVGParseTriangle(char *argv[8]);
+void BVGDrawTriangle(BVGTriangle *triangle);
+BVGText *BVGParseText(char *argv[5]);
+void BVGDrawText(BVGText *text);