
#ifndef _games_h_INCLUDED
#define _games_h_INCLUDED


#define MAXGAMES 100
#define MAXUSERNAME 30			/* I made these up */
#define MAXRANK 20

void ClearGames(void);
void CleanupGames (void);
void SetGameInfo (int n, char *wname, char *wrank, char *bname, char *brank,
		  int move, int size, int hcap, int komi, int obs);
void ReceivedMove (int game, int move, int row, int col);
void ReceivedGameIndicator (int game, char *wname, char *bname,
			    int wtime, int btime, int wstones, int bstones);
void ReceivedRemove (int game, int row, int col);
void ReceivedKibitz (int game, char *kname, char *krank, char *text);
void ScoredBoardReceived (int h, char *line);
void PopupUnGame (void);
void PopupGone (Widget w);
Widget FindGameKibitz(void);
     
#endif
