diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-09-15 18:50:32 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-09-15 18:50:32 +0200 |
commit | c3eee8e333866d92e5fd94ae83cef618758c11bb (patch) | |
tree | 234a06fd90bd61a6668490a0cbf8870e6c674b81 /FICS/obsproc.h |
FICS RPBLC v1.4.61.4.6
Diffstat (limited to 'FICS/obsproc.h')
-rw-r--r-- | FICS/obsproc.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/FICS/obsproc.h b/FICS/obsproc.h new file mode 100644 index 0000000..e9fa1a0 --- /dev/null +++ b/FICS/obsproc.h @@ -0,0 +1,59 @@ +/* obsproc.h + * + */ + +/* + fics - An internet chess server. + Copyright (C) 1993 Richard V. Nash + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. +*/ + +/* Revision history: + name email yy/mm/dd Change + Dave Herscovici 95/11/26 Created + Markus Uhlin 24/04/28 Revised +*/ + +#ifndef _OBSPROC_H +#define _OBSPROC_H + +#include "command.h" /* param_list */ + +#define MAX_JOURNAL 10 + +extern int GameNumFromParam(int, int *, parameter *); +extern int com_allobservers(int, param_list); +extern int com_backward(int, param_list); +extern int com_examine(int, param_list); +extern int com_forward(int, param_list); +extern int com_games(int, param_list); +extern int com_history(int, param_list); +extern int com_journal(int, param_list); +extern int com_jsave(int, param_list); +extern int com_mailmoves(int, param_list); +extern int com_mailoldmoves(int, param_list); +extern int com_mailstored(int, param_list); +extern int com_mexamine(int, param_list); +extern int com_moves(int, param_list); +extern int com_observe(int, param_list); +extern int com_oldmoves(int, param_list); +extern int com_revert(int, param_list); +extern int com_smoves(int, param_list); +extern int com_sposition(int, param_list); +extern int com_stored(int, param_list); +extern int com_unexamine(int, param_list); +extern int com_unobserve(int, param_list); +extern void ExamineScratch(int, param_list); +extern void jsave_history(int, char, int, int, char *); +extern void unobserveAll(int); + +#endif /* _OBSPROC_H */ |