blob: a7cbf95a1fc4a9e04713534e0b357244de833cdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/* comproc.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
Richard Nash 93/10/22 Created
Markus Uhlin 23/12/09 Fixed implicit ints
Markus Uhlin 23/12/19 Sorted declarations
*/
#ifndef _COMPROC_H
#define _COMPROC_H
extern const int none;
extern const int blitz_rat;
extern const int std_rat;
extern const int wild_rat;
extern const int light_rat;
/*
* The number of news items in the index file.
*/
extern int num_news;
extern int FindPlayer();
extern int com_adhelp();
extern int com_alias();
extern int com_bell();
extern int com_date();
extern int com_flip();
extern int com_getpi();
extern int com_getps();
extern int com_handles();
extern int com_help();
extern int com_highlight();
extern int com_index();
extern int com_info();
extern int com_limits();
extern int com_llogons();
extern int com_logons();
extern int com_mailhelp();
extern int com_mailsource();
extern int com_more();
extern int com_news();
extern int com_open();
extern int com_password();
extern int com_prefresh();
extern int com_promote();
extern int com_quit();
extern int com_rating_recalc();
extern int com_refresh();
extern int com_servers();
extern int com_set();
extern int com_simopen();
extern int com_stats();
extern int com_style();
extern int com_unalias();
extern int com_uptime();
extern int com_uscf();
extern int com_who();
extern void rscan_news(FILE *, int, int);
extern void rscan_news2(FILE *, int, int);
#endif /* _COMPROC_H */
|