diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-10-17 10:39:51 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-10-17 10:39:51 +0200 |
commit | ebf94445b9a49318122392d7fc7b098027706d97 (patch) | |
tree | 325f5a9a56fb4607b0531a3501195059b5736c97 /doc/it | |
parent | eff0f9abdb53b0c0e1c2060a6f9598c51347e1bb (diff) | |
download | weechat-ebf94445b9a49318122392d7fc7b098027706d97.zip |
Use const void * for keys and values in some hashtable functions
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 1ccd4d5c9..cd7b45bf8 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -2919,8 +2919,8 @@ Prototipo: [source,C] ---------------------------------------- int weechat_hashtable_set_with_size (struct t_hashtable *hashtable, - void *key, int key_size, - void *value, int value_size); + const void *key, int key_size, + const void *value, int value_size); ---------------------------------------- Arguments: @@ -2960,7 +2960,7 @@ Prototipo: [source,C] ---------------------------------------- int weechat_hashtable_set (struct t_hashtable *hashtable, - void *key, void *value); + const void *key, const void *value); ---------------------------------------- Argomenti: |