summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-01-29 18:59:28 +0100
committerGravatar Jonathan Beck2009-01-29 18:59:28 +0100
commitddf3e321b10cfabf63e16e7061952465c3055664 (patch)
treed0b2f9fdea92d9fbf398f2394384881fb07e6819 /include
parent6d2cd169b0a73915964076a9dc653011e07875d3 (diff)
downloadlibplist-ddf3e321b10cfabf63e16e7061952465c3055664.tar.gz
libplist-ddf3e321b10cfabf63e16e7061952465c3055664.tar.bz2
Remove dangerous functions from pulic API.
Diffstat (limited to 'include')
-rw-r--r--include/plist/plist.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h
index c5af845..c06d38b 100644
--- a/include/plist/plist.h
+++ b/include/plist/plist.h
@@ -49,8 +49,7 @@ typedef enum {
//utilitary functions to create root nodes (supposed to be dict or array)
plist_t plist_new_dict();
plist_t plist_new_array();
-//Plist edition, create a new root if node is NULL
-plist_t plist_add_sub_element( plist_t node, plist_type type, const void* value, uint64_t length);
+
//Plist edition, only work for dict and array node
void plist_add_sub_node(plist_t node, plist_t subnode);
@@ -72,12 +71,9 @@ plist_t plist_get_next_sibling(plist_t node);
plist_t plist_get_prev_sibling(plist_t node);
//utili function to find first (and only the first encountred) corresponding node
-plist_t plist_find_node(plist_t plist, plist_type type, const void *value, uint64_t length);
plist_t plist_find_node_by_key(plist_t plist, const char *value);
plist_t plist_find_node_by_string(plist_t plist, const char *value);
-void plist_get_type_and_value(plist_t node, plist_type * type, void *value, uint64_t * length);
-
//Plist reading
plist_type plist_get_node_type(plist_t node);