#ifndef PRIVCHAT_H #define PRIVCHAT_H void privchat_handle_invite(Connection *c,Message *m,gpointer data); void privchat_handle_other_leave(Connection *c,Message *m,gpointer data); void privchat_handle_other_join(Connection *c,Message *m,gpointer data); void privchat_handle_subject_change(Connection *c,Message *m,gpointer data); void privchat_handle_chat(Connection *c,Message *m,gpointer data); void privchat_handle_privchat(Connection *c,Message *m,gpointer data); void privchat_start_privchat_with_user(Connection *c,int socket); void privchat_make_invite_menu(UserWidget *uw, GtkMenu *menu); void privchat_attach_to_menu(Connection *c, GtkMenu *menu, GtkWidget *item); #endif