aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/chat/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/chat/chat.h')
-rw-r--r--src/plugins/chat/chat.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/plugins/chat/chat.h b/src/plugins/chat/chat.h
index b4767aea..e4fafe3a 100644
--- a/src/plugins/chat/chat.h
+++ b/src/plugins/chat/chat.h
@@ -61,6 +61,19 @@ struct GNUNET_CHAT_safe_write_struct
61 const char *senderNick; 61 const char *senderNick;
62}; 62};
63 63
64struct GNUNET_CHAT_safe_nick_write_struct
65{
66 GtkWidget *nickList;
67 const char *nick;
68};
69
70struct GNUNET_CHAT_member_list
71{
72 struct GNUNET_CHAT_member_list *next;
73 struct GNUNET_CHAT_member_list *prev;
74 char *nick;
75};
76
64 77
65void 78void
66on_chat_frame_send_button_click_event_chat(GtkWidget* widget, gpointer data); 79on_chat_frame_send_button_click_event_chat(GtkWidget* widget, gpointer data);