#ifndef HEADER_QUIRC
#define HEADER_QUIRC

#include "window.h"
#include "history.h"
#include "hash.h"
#include "network.h"

// The unique numbers for identifying items with
extern int statusnum;
extern int channum;
extern int querynum;
extern int chatnum;
extern int acceptnum;
extern int filenum;

// Network locking provisions
extern int networklock;
extern list<handleable*> reinstate;

// The pathname to the current window
extern char currentwindow[20];

// List of Windows in client
extern ilist<twindow> windows;

// Global history list
extern ilist<tcommand> history;
extern int historyposition;
extern char *historycommand;

// Formating and Location listings
extern hash formats;
extern hash activate;
extern hash locations;

#endif


syntax highlighted by Code2HTML, v. 0.9.1