aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/gamedb.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/FICS/gamedb.h b/FICS/gamedb.h
index 4e29266..dbb0bb6 100644
--- a/FICS/gamedb.h
+++ b/FICS/gamedb.h
@@ -149,6 +149,21 @@ typedef struct _game {
int winner;
} game;
+struct JGI_context {
+ int p;
+ char from_spot;
+ char WhiteName[MAX_LOGIN_NAME + 1];
+ int WhiteRating;
+ char BlackName[MAX_LOGIN_NAME + 1];
+ int BlackRating;
+ char type[100];
+ int t;
+ int i;
+ char eco[100];
+ char ending[100];
+ char result[100];
+};
+
extern game *garray;
extern int g_num;