diff options
| author | 2008-11-30 21:49:56 +0100 | |
|---|---|---|
| committer | 2008-11-30 21:49:56 +0100 | |
| commit | d560cf5a15d1aef74e95b208ed69b7d324d94354 (patch) | |
| tree | dbb5ffacf09ae6abbe002c53604f580996d5cdb6 /src/plist.h | |
| parent | 889cb32a1231c41762d7e2bbe6c891bd3a6c9a7d (diff) | |
| download | libimobiledevice-d560cf5a15d1aef74e95b208ed69b7d324d94354.tar.gz libimobiledevice-d560cf5a15d1aef74e95b208ed69b7d324d94354.tar.bz2 | |
complete xml plist abstraction and migrate lockdownd_hello to new plist API.
Diffstat (limited to 'src/plist.h')
| -rw-r--r-- | src/plist.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/plist.h b/src/plist.h index 1ca55f9..ffc00e4 100644 --- a/src/plist.h +++ b/src/plist.h | |||
| @@ -70,15 +70,19 @@ typedef GNode *plist_t; | |||
| 70 | typedef GNode *dict_t; | 70 | typedef GNode *dict_t; |
| 71 | typedef GNode *array_t; | 71 | typedef GNode *array_t; |
| 72 | 72 | ||
| 73 | |||
| 73 | void plist_new_plist(plist_t * plist); | 74 | void plist_new_plist(plist_t * plist); |
| 74 | void plist_new_dict_in_plist(plist_t plist, dict_t * dict); | 75 | void plist_new_dict_in_plist(plist_t plist, dict_t * dict); |
| 75 | void plist_new_array_in_plist(plist_t plist, int length, plist_type type, void **values, array_t * array); | 76 | void plist_new_array_in_plist(plist_t plist, int length, plist_type type, void **values, array_t * array); |
| 76 | void plist_add_dict_element(dict_t dict, char *key, plist_type type, void *value); | 77 | void plist_add_dict_element(dict_t dict, char *key, plist_type type, void *value); |
| 77 | void plist_free(plist_t plist); | 78 | void plist_free(plist_t plist); |
| 78 | 79 | ||
| 79 | void plist_to_xml(plist_t plist, char **plist_xml); | 80 | void plist_to_xml(plist_t plist, char **plist_xml, uint32_t * length); |
| 80 | void plist_to_bin(plist_t plist, char **plist_bin, int *length); | 81 | void plist_to_bin(plist_t plist, char **plist_bin, uint32_t * length); |
| 82 | |||
| 83 | void xml_to_plist(const char *plist_xml, uint32_t length, plist_t * plist); | ||
| 84 | void bin_to_plist(const char *plist_bin, uint32_t length, plist_t * plist); | ||
| 81 | 85 | ||
| 82 | void xml_to_plist(const char *plist_xml, plist_t * plist); | 86 | GNode *find_query_node(plist_t plist, char *key, char *request); |
| 83 | void bin_to_plist(const char *plist_bin, int length, plist_t * plist); | 87 | void get_type_and_value(GNode * node, plist_type * type, void *value); |
| 84 | #endif | 88 | #endif |
