diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:27:22 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:27:22 +0100 |
commit | 8172a4e3171fec2a6399c1bc78432d39e5b1be59 (patch) | |
tree | 6e85c3d96eae013ad3e2373568753599289140d6 /FICS/playerdb.h | |
parent | 68864c75944f12b199072b2809b7d2f8b2419692 (diff) |
Added alignment
Diffstat (limited to 'FICS/playerdb.h')
-rw-r--r-- | FICS/playerdb.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/FICS/playerdb.h b/FICS/playerdb.h index d0a9771..dd4cfb8 100644 --- a/FICS/playerdb.h +++ b/FICS/playerdb.h @@ -30,32 +30,32 @@ #define PLAYER_VERSION 1 -#define MAX_PLAYER 500 -#define MAX_PENDING 10 -#define MAX_OBSERVE 30 /* max # of games one person can observe */ -#define MAX_PLAN 10 -#define MAX_FORMULA 9 -#define MAX_CENSOR 50 -#define MAX_NOTIFY 80 -#define MAX_ALIASES 30 -#define MAX_SIMUL 30 -#define MAX_MESSAGES 40 -#define MAX_INCHANNELS 16 - -#define PLAYER_EMPTY 0 -#define PLAYER_NEW 1 -#define PLAYER_INQUEUE 2 -#define PLAYER_LOGIN 3 -#define PLAYER_PASSWORD 4 -#define PLAYER_PROMPT 5 - -#define P_LOGIN 0 -#define P_LOGOUT 1 - -#define SORT_BLITZ 0 -#define SORT_STAND 1 -#define SORT_ALPHA 2 -#define SORT_WILD 3 +#define MAX_PLAYER 500 +#define MAX_PENDING 10 +#define MAX_OBSERVE 30 +#define MAX_PLAN 10 +#define MAX_FORMULA 9 +#define MAX_CENSOR 50 +#define MAX_NOTIFY 80 +#define MAX_ALIASES 30 +#define MAX_SIMUL 30 +#define MAX_MESSAGES 40 +#define MAX_INCHANNELS 16 + +#define PLAYER_EMPTY 0 +#define PLAYER_NEW 1 +#define PLAYER_INQUEUE 2 +#define PLAYER_LOGIN 3 +#define PLAYER_PASSWORD 4 +#define PLAYER_PROMPT 5 + +#define P_LOGIN 0 +#define P_LOGOUT 1 + +#define SORT_BLITZ 0 +#define SORT_STAND 1 +#define SORT_ALPHA 2 +#define SORT_WILD 3 typedef struct _statistics { int num, win, los, dra, rating, ltime, best, whenbest; |