diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-22 12:58:05 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-22 12:58:05 +0200 |
commit | a965be6802bbc601096c4186d3e338652b6c9bd2 (patch) | |
tree | e454aa878bf71ab99f47884721a69c2e33918299 /src/gui/gui-buffer.h | |
parent | 533155816dec43a5c9861c7e648736a8d5122c14 (diff) | |
download | weechat-a965be6802bbc601096c4186d3e338652b6c9bd2.zip |
Add function buffer_set_pointer in plugin API
Diffstat (limited to 'src/gui/gui-buffer.h')
-rw-r--r-- | src/gui/gui-buffer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/gui-buffer.h b/src/gui/gui-buffer.h index a003a5c4b..9e9b0bfe4 100644 --- a/src/gui/gui-buffer.h +++ b/src/gui/gui-buffer.h @@ -206,7 +206,9 @@ extern void gui_buffer_set_highlight_tags (struct t_gui_buffer *buffer, const char *new_highlight_tags); extern void gui_buffer_set_unread (struct t_gui_buffer *buffer); extern void gui_buffer_set (struct t_gui_buffer *buffer, const char *property, - void *value); + const char *value); +extern void gui_buffer_set_pointer (struct t_gui_buffer *buffer, + const char *property, void *pointer); extern struct t_gui_buffer *gui_buffer_search_main (); extern struct t_gui_buffer *gui_buffer_search_by_name (const char *plugin, const char *name); |