summaryrefslogtreecommitdiffstats
path: root/src/plist.h
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2008-08-03 20:29:49 +0200
committerGravatar Matt Colyer2008-08-05 23:28:10 -0700
commitb25fea997fc798e945dd7f19f8d0be0d8d3289d1 (patch)
treee49124e7dbab4800ac4ec155b5dded91551cadf8 /src/plist.h
parent9fa57190be32f0d9d52948ea8d1e22bedf679312 (diff)
downloadlibimobiledevice-b25fea997fc798e945dd7f19f8d0be0d8d3289d1.tar.gz
libimobiledevice-b25fea997fc798e945dd7f19f8d0be0d8d3289d1.tar.bz2
Added function to handle <data> tag in dict.
Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'src/plist.h')
-rw-r--r--src/plist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plist.h b/src/plist.h
index 3d1edda..64ff4d3 100644
--- a/src/plist.h
+++ b/src/plist.h
@@ -26,6 +26,7 @@
26#include <libxml/tree.h> 26#include <libxml/tree.h>
27 27
28xmlNode *add_key_str_dict_element(xmlDocPtr plist, xmlNode *dict, const char *key, const char *value, int depth); 28xmlNode *add_key_str_dict_element(xmlDocPtr plist, xmlNode *dict, const char *key, const char *value, int depth);
29xmlNode *add_key_data_dict_element(xmlDocPtr plist, xmlNode *dict, const char *key, const char *value, int depth);
29xmlNode *add_child_to_plist(xmlDocPtr plist, const char *name, const char *content, xmlNode *to_node, int depth); 30xmlNode *add_child_to_plist(xmlDocPtr plist, const char *name, const char *content, xmlNode *to_node, int depth);
30void free_plist(xmlDocPtr plist); 31void free_plist(xmlDocPtr plist);
31xmlDocPtr new_plist(); 32xmlDocPtr new_plist();