
#ifndef _CONVERSATION_H
#define _CONVERSATION_H

#include <gnophone.h>
#include <gtk/gtk.h>
#include <gdk_imlib.h>
#include <gdk/gdkkeysyms.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>                                                   
#include <sys/signal.h>

struct conversation { 
	GtkWidget *window;
	GtkWidget *text;
	GtkWidget *entry;
	GtkWidget *send;
	GtkWidget *close;
	int pcid;
};

extern struct conversation *find_conversation(int);
extern void conversation_inactivate(int);

#endif
