summaryrefslogtreecommitdiff
path: root/rsvg-path.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2016-11-08 15:39:18 -0600
committerFederico Mena Quintero <federico@gnome.org>2016-11-08 16:03:48 -0600
commite6706865d712f8ec5aeb069d0483123da4dfc684 (patch)
treec46fd6a1ff6fcf2471dc3079f363659dc43f2d14 /rsvg-path.h
parent6d5788b63c4001d071fcf29b79c8f75fb7c194cc (diff)
downloadlibrsvg-e6706865d712f8ec5aeb069d0483123da4dfc684.tar.gz
rsvg-path.h: Fully implemented in Rust now
We finish the Rustification of rsvg-path with the implementation of rsvg_path_parser_from_str_into_builder(), equivalent to the old rsvg_path_builder_parse_path().
Diffstat (limited to 'rsvg-path.h')
-rw-r--r--rsvg-path.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/rsvg-path.h b/rsvg-path.h
index 71664218..9857f263 100644
--- a/rsvg-path.h
+++ b/rsvg-path.h
@@ -34,6 +34,9 @@
G_BEGIN_DECLS
+/* All the following functions and types are implemented in the Rust code.
+ */
+
typedef struct _RsvgPathBuilder RsvgPathBuilder;
G_GNUC_INTERNAL
@@ -74,7 +77,7 @@ G_GNUC_INTERNAL
void rsvg_path_builder_add_to_cairo_context (RsvgPathBuilder *builder, cairo_t *cr);
G_GNUC_INTERNAL
-RsvgPathBuilder *rsvg_path_builder_parse_path (const char *path_str);
+RsvgPathBuilder *rsvg_path_parser_from_str_into_builder (const char *path_str);
G_END_DECLS