diff options
author | Jonathan Beck | 2009-01-29 18:59:28 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-01-29 18:59:28 +0100 |
commit | ddf3e321b10cfabf63e16e7061952465c3055664 (patch) | |
tree | d0b2f9fdea92d9fbf398f2394384881fb07e6819 /src | |
parent | 6d2cd169b0a73915964076a9dc653011e07875d3 (diff) | |
download | libplist-ddf3e321b10cfabf63e16e7061952465c3055664.tar.gz libplist-ddf3e321b10cfabf63e16e7061952465c3055664.tar.bz2 |
Remove dangerous functions from pulic API.
Diffstat (limited to 'src')
-rw-r--r-- | src/plist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plist.h b/src/plist.h index 80a3f7f..319647d 100644 --- a/src/plist.h +++ b/src/plist.h @@ -57,5 +57,8 @@ plist_data_t plist_new_plist_data(); void plist_free_plist_data(plist_data_t node); uint64_t plist_get_node_uint_val(plist_t node); +plist_t plist_add_sub_element( plist_t node, plist_type type, const void* value, uint64_t length); +plist_t plist_find_node(plist_t plist, plist_type type, const void *value, uint64_t length); +void plist_get_type_and_value(plist_t node, plist_type * type, void *value, uint64_t * length); #endif |