diff options
| author | 2009-01-29 18:54:18 +0100 | |
|---|---|---|
| committer | 2009-01-29 18:54:18 +0100 | |
| commit | 6d2cd169b0a73915964076a9dc653011e07875d3 (patch) | |
| tree | 7674a901cc02ab2cc390b6264ce1c42ce87465fc /include | |
| parent | ecfe5f4ece77491d764d570aad02fd422da5338c (diff) | |
| download | libplist-6d2cd169b0a73915964076a9dc653011e07875d3.tar.gz libplist-6d2cd169b0a73915964076a9dc653011e07875d3.tar.bz2 | |
Make pointer argument in API const when possible.
Diffstat (limited to 'include')
| -rw-r--r-- | include/plist/plist.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h index b666d2f..c5af845 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h | |||
| @@ -50,17 +50,17 @@ typedef enum { | |||
| 50 | plist_t plist_new_dict(); | 50 | plist_t plist_new_dict(); |
| 51 | plist_t plist_new_array(); | 51 | plist_t plist_new_array(); |
| 52 | //Plist edition, create a new root if node is NULL | 52 | //Plist edition, create a new root if node is NULL |
| 53 | plist_t plist_add_sub_element( plist_t node, plist_type type, void* value, uint64_t length); | 53 | plist_t plist_add_sub_element( plist_t node, plist_type type, const void* value, uint64_t length); |
| 54 | 54 | ||
| 55 | //Plist edition, only work for dict and array node | 55 | //Plist edition, only work for dict and array node |
| 56 | void plist_add_sub_node(plist_t node, plist_t subnode); | 56 | void plist_add_sub_node(plist_t node, plist_t subnode); |
| 57 | 57 | ||
| 58 | void plist_add_sub_key_el(plist_t node, char* val); | 58 | void plist_add_sub_key_el(plist_t node, const char* val); |
| 59 | void plist_add_sub_string_el(plist_t node, char* val); | 59 | void plist_add_sub_string_el(plist_t node, const char* val); |
| 60 | void plist_add_sub_bool_el(plist_t node, uint8_t val); | 60 | void plist_add_sub_bool_el(plist_t node, uint8_t val); |
| 61 | void plist_add_sub_uint_el(plist_t node, uint64_t val); | 61 | void plist_add_sub_uint_el(plist_t node, uint64_t val); |
| 62 | void plist_add_sub_real_el(plist_t node, double val); | 62 | void plist_add_sub_real_el(plist_t node, double val); |
| 63 | void plist_add_sub_data_el(plist_t node, char* val, uint64_t length); | 63 | void plist_add_sub_data_el(plist_t node, const char* val, uint64_t length); |
| 64 | 64 | ||
| 65 | 65 | ||
| 66 | //plist free | 66 | //plist free |
| @@ -72,9 +72,9 @@ plist_t plist_get_next_sibling(plist_t node); | |||
| 72 | plist_t plist_get_prev_sibling(plist_t node); | 72 | plist_t plist_get_prev_sibling(plist_t node); |
| 73 | 73 | ||
| 74 | //utili function to find first (and only the first encountred) corresponding node | 74 | //utili function to find first (and only the first encountred) corresponding node |
| 75 | plist_t plist_find_node(plist_t plist, plist_type type, void *value, uint64_t length); | 75 | plist_t plist_find_node(plist_t plist, plist_type type, const void *value, uint64_t length); |
| 76 | plist_t plist_find_node_by_key(plist_t plist, char *value); | 76 | plist_t plist_find_node_by_key(plist_t plist, const char *value); |
| 77 | plist_t plist_find_node_by_string(plist_t plist, char *value); | 77 | plist_t plist_find_node_by_string(plist_t plist, const char *value); |
| 78 | 78 | ||
| 79 | void plist_get_type_and_value(plist_t node, plist_type * type, void *value, uint64_t * length); | 79 | void plist_get_type_and_value(plist_t node, plist_type * type, void *value, uint64_t * length); |
| 80 | 80 | ||
