From a9a55ea7f28894d9e72be5e8b2d5a9331f1e7be4 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 28 Aug 2016 19:33:52 +0200 Subject: misc: add some annoying mpv_node helpers Sigh. Some parts of mpv essentially duplicate this code (with varrying levels of triviality) - this can be fixed "later". --- misc/node.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 misc/node.h (limited to 'misc/node.h') diff --git a/misc/node.h b/misc/node.h new file mode 100644 index 0000000000..c3b4501dc8 --- /dev/null +++ b/misc/node.h @@ -0,0 +1,11 @@ +#ifndef MP_MISC_NODE_H_ +#define MP_MISC_NODE_H_ + +#include "libmpv/client.h" + +void node_init(struct mpv_node *dst, int format, struct mpv_node *parent); +struct mpv_node *node_array_add(struct mpv_node *dst, int format); +struct mpv_node *node_map_add(struct mpv_node *dst, const char *key, int format); +void node_map_add_string(struct mpv_node *dst, const char *key, const char *val); + +#endif -- cgit v1.2.3