1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 08:13:14 +02:00

Added input_data callback argument to gui_buffer_new() function

This commit is contained in:
Sebastien Helleu
2007-11-26 14:27:53 +00:00
parent 7cc78f4172
commit f5d026a775
8 changed files with 35 additions and 19 deletions
+3 -2
View File
@@ -63,7 +63,8 @@ struct t_gui_buffer *gui_buffer_before_raw_data = NULL; /* buf. before raw */
*/
struct t_gui_buffer *
gui_buffer_new (void *plugin, char *category, char *name)
gui_buffer_new (void *plugin, char *category, char *name,
void (*input_data_cb)(struct t_gui_buffer *, char *))
{
struct t_gui_buffer *new_buffer;
struct t_gui_completion *new_completion;
@@ -118,7 +119,7 @@ gui_buffer_new (void *plugin, char *category, char *name)
/* input */
new_buffer->input = 1;
new_buffer->input_data_cb = NULL;
new_buffer->input_data_cb = input_data_cb;
new_buffer->input_nick = NULL;
new_buffer->input_buffer_alloc = GUI_BUFFER_INPUT_BLOCK_SIZE;
new_buffer->input_buffer = (char *) malloc (GUI_BUFFER_INPUT_BLOCK_SIZE);