diff options
Diffstat (limited to '3rdparty/portmidi/pm_mac/readbinaryplist.h')
-rw-r--r-- | 3rdparty/portmidi/pm_mac/readbinaryplist.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3rdparty/portmidi/pm_mac/readbinaryplist.h b/3rdparty/portmidi/pm_mac/readbinaryplist.h index e82056a0b79..8b096d08e2e 100644 --- a/3rdparty/portmidi/pm_mac/readbinaryplist.h +++ b/3rdparty/portmidi/pm_mac/readbinaryplist.h @@ -71,16 +71,16 @@ typedef struct value_struct { } value_node, *value_ptr; -value_ptr bplist_read_file(char *filename); -value_ptr bplist_read_user_pref(char *filename); -value_ptr bplist_read_system_pref(char *filename); +value_ptr bplist_read_file(const char *filename); +value_ptr bplist_read_user_pref(const char *filename); +value_ptr bplist_read_system_pref(const char *filename); void bplist_free_data(void); /*************** functions for accessing values ****************/ char *value_get_asciistring(value_ptr v); -value_ptr value_dict_lookup_using_string(value_ptr v, char *key); -value_ptr value_dict_lookup_using_path(value_ptr v, char *path); +value_ptr value_dict_lookup_using_string(value_ptr v, const char *key); +value_ptr value_dict_lookup_using_path(value_ptr v, const char *path); /*************** functions for debugging ***************/ |