diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:31:56 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:31:56 +0100 |
commit | 87d084db8eb055cf4097b8ca980096ba30290202 (patch) | |
tree | f9b0eb91a8dd31fdee0c0f432d09622099f3adcc | |
parent | 97d33506fb64fe687c2285543e2703f510460d06 (diff) |
Added alignment
-rw-r--r-- | FICS/playerdb.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/FICS/playerdb.h b/FICS/playerdb.h index 759fd69..784997f 100644 --- a/FICS/playerdb.h +++ b/FICS/playerdb.h @@ -62,20 +62,21 @@ typedef struct _statistics { double sterr; } statistics; -#define PEND_MATCH 0 /* Params 1=wt 2=winc 3=bt 4=binc 5=registered */ -#define PEND_DRAW 1 -#define PEND_ABORT 2 -#define PEND_TAKEBACK 3 -#define PEND_ADJOURN 4 -#define PEND_SWITCH 5 -#define PEND_SIMUL 6 -#define PEND_PAUSE 7 -#define PEND_PARTNER 8 -#define PEND_BUGHOUSE 9 +#define PEND_MATCH 0 +#define PEND_DRAW 1 +#define PEND_ABORT 2 +#define PEND_TAKEBACK 3 +#define PEND_ADJOURN 4 +#define PEND_SWITCH 5 +#define PEND_SIMUL 6 +#define PEND_PAUSE 7 +#define PEND_PARTNER 8 +#define PEND_BUGHOUSE 9 #define PEND_ALL -1 -#define PEND_TO 0 -#define PEND_FROM 1 +#define PEND_TO 0 +#define PEND_FROM 1 + typedef struct _pending { int type; int whoto; |