summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-10-17 10:39:51 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-10-17 10:39:51 +0200
commitebf94445b9a49318122392d7fc7b098027706d97 (patch)
tree325f5a9a56fb4607b0531a3501195059b5736c97 /doc/en
parenteff0f9abdb53b0c0e1c2060a6f9598c51347e1bb (diff)
downloadweechat-ebf94445b9a49318122392d7fc7b098027706d97.zip
Use const void * for keys and values in some hashtable functions
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/weechat_plugin_api.en.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt
index 440317fdb..3ee15b6a4 100644
--- a/doc/en/weechat_plugin_api.en.txt
+++ b/doc/en/weechat_plugin_api.en.txt
@@ -2883,8 +2883,8 @@ Prototype:
[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:
@@ -2924,7 +2924,7 @@ Prototype:
[source,C]
----------------------------------------
int weechat_hashtable_set (struct t_hashtable *hashtable,
- void *key, void *value);
+ const void *key, const void *value);
----------------------------------------
Arguments: