diff options
Diffstat (limited to 'src/plist.h')
| -rw-r--r-- | src/plist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plist.h b/src/plist.h index ff4bdbf..1dc464a 100644 --- a/src/plist.h +++ b/src/plist.h | |||
| @@ -67,7 +67,7 @@ typedef GNode *plist_t; | |||
| 67 | void plist_new_dict(plist_t * plist); | 67 | void plist_new_dict(plist_t * plist); |
| 68 | void plist_new_array(plist_t * plist); | 68 | void plist_new_array(plist_t * plist); |
| 69 | void plist_new_dict_in_plist(plist_t plist, plist_t * dict); | 69 | void plist_new_dict_in_plist(plist_t plist, plist_t * dict); |
| 70 | void plist_add_dict_element(plist_t dict, char *key, plist_type type, void *value); | 70 | void plist_add_dict_element(plist_t dict, char *key, plist_type type, void *value, uint64_t length); |
| 71 | void plist_free(plist_t plist); | 71 | void plist_free(plist_t plist); |
| 72 | 72 | ||
| 73 | void plist_to_xml(plist_t plist, char **plist_xml, uint32_t * length); | 73 | void plist_to_xml(plist_t plist, char **plist_xml, uint32_t * length); |
| @@ -78,6 +78,6 @@ void bin_to_plist(const char *plist_bin, uint32_t length, plist_t * plist); | |||
| 78 | 78 | ||
| 79 | plist_t find_query_node(plist_t plist, char *key, char *request); | 79 | plist_t find_query_node(plist_t plist, char *key, char *request); |
| 80 | plist_t find_node(plist_t plist, plist_type type, void *value); | 80 | plist_t find_node(plist_t plist, plist_type type, void *value); |
| 81 | void get_type_and_value(plist_t node, plist_type * type, void *value); | 81 | void get_type_and_value(plist_t node, plist_type * type, void *value, uint64_t * length); |
| 82 | 82 | ||
| 83 | #endif | 83 | #endif |
