aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/adminproc.h
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-07 21:31:49 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-07 21:31:49 +0100
commit79b59f9b30fb6a1fdf8c3efb446271f7cb00d434 (patch)
treef6ade4ccbc3af20d825edacfd12b5da8ded8d240 /FICS/adminproc.h
FICS 1.6.2
Diffstat (limited to 'FICS/adminproc.h')
-rw-r--r--FICS/adminproc.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/FICS/adminproc.h b/FICS/adminproc.h
new file mode 100644
index 0000000..c6a21a7
--- /dev/null
+++ b/FICS/adminproc.h
@@ -0,0 +1,71 @@
+/* adminproc.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
+*/
+
+#ifndef _ADMINPROC_H
+#define _ADMINPROC_H
+
+extern int num_anews;
+
+extern int com_addplayer();
+extern int com_adjudicate(int, param_list);
+extern int com_nuke();
+extern int com_pose();
+extern int com_asetv();
+extern int com_announce();
+extern int com_annunreg();
+extern int com_muzzle();
+extern int com_cmuzzle();
+extern int com_asetrealname();
+extern int com_asetpasswd();
+extern int com_asetemail();
+extern int com_asethandle();
+extern int com_asetadmin();
+extern int server_shutdown();
+extern int com_asetblitz();
+extern int com_asetwild();
+extern int com_asetstd();
+extern int com_asetlight();
+extern int com_checkIP();
+extern int com_checkGAME();
+extern int com_checkPLAYER();
+extern int com_checkSOCKET();
+extern int com_checkTIMESEAL();
+extern int com_remplayer();
+extern int com_raisedead();
+extern int strcmpwild();
+extern int com_anews();
+extern int com_cnewsi();
+extern int com_cnewsf();
+extern int com_canewsi();
+extern int com_canewsf();
+extern int com_createadmnews();
+extern int com_summon();
+extern int com_addcomment();
+extern int com_showcomment();
+extern int com_admin();
+extern int com_asetmaxplayer();
+extern int com_quota();
+
+#endif /* _ADMINPROC_H */
+