2003-11-18 11:51:09 +00:00
|
|
|
/* NeoStats - IRC Statistical Services
|
2004-01-14 11:36:37 +00:00
|
|
|
** Copyright (c) 1999-2004 Adam Rutter, Justin Hammond, Mark Hetherington
|
2003-11-18 11:51:09 +00:00
|
|
|
** http://www.neostats.net/
|
|
|
|
**
|
|
|
|
** 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.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with this program; if not, write to the Free Software
|
|
|
|
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
** USA
|
|
|
|
**
|
|
|
|
** NeoStats CVS Identification
|
|
|
|
** $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NS_HELP_H_
|
|
|
|
#define _NS_HELP_H_
|
|
|
|
|
2003-11-27 22:49:10 +00:00
|
|
|
/* ns.c */
|
|
|
|
extern const char *ns_help_shutdown[];
|
|
|
|
extern const char *ns_help_reload[];
|
|
|
|
extern const char *ns_help_logs[];
|
2004-01-26 11:33:52 +00:00
|
|
|
extern const char *ns_help_exclude[];
|
2003-11-18 11:51:09 +00:00
|
|
|
#ifdef USE_RAW
|
2003-11-27 22:49:10 +00:00
|
|
|
extern const char *ns_help_raw[];
|
2003-11-18 11:51:09 +00:00
|
|
|
#endif
|
2003-11-27 22:49:10 +00:00
|
|
|
extern const char *ns_help_debug[];
|
|
|
|
extern const char *ns_help_userdump[];
|
|
|
|
extern const char *ns_help_chandump[];
|
|
|
|
extern const char *ns_help_serverdump[];
|
2004-05-28 09:38:31 +00:00
|
|
|
extern const char *ns_help_bandump[];
|
2003-11-27 22:49:10 +00:00
|
|
|
extern const char *ns_help_version[];
|
|
|
|
extern const char *ns_help_load[];
|
|
|
|
extern const char *ns_help_unload[];
|
|
|
|
extern const char *ns_help_modlist[];
|
|
|
|
extern const char *ns_help_jupe[];
|
|
|
|
extern const char *ns_help_level[];
|
|
|
|
extern const char *ns_help_botlist[];
|
|
|
|
extern const char *ns_help_socklist[];
|
|
|
|
extern const char *ns_help_timerlist[];
|
|
|
|
extern const char *ns_help_botchanlist[];
|
2003-12-12 20:38:45 +00:00
|
|
|
extern const char *ns_help_status[];
|
2003-11-18 11:51:09 +00:00
|
|
|
|
2003-11-27 22:49:10 +00:00
|
|
|
extern const char ns_help_oneline[];
|
|
|
|
extern const char ns_help_level_oneline[];
|
2003-12-12 20:38:45 +00:00
|
|
|
extern const char ns_help_status_oneline[];
|
2003-11-27 22:49:10 +00:00
|
|
|
extern const char ns_help_version_oneline[];
|
|
|
|
extern const char ns_help_shutdown_oneline[];
|
|
|
|
extern const char ns_help_reload_oneline[];
|
|
|
|
extern const char ns_help_logs_oneline[];
|
|
|
|
extern const char ns_help_load_oneline[];
|
|
|
|
extern const char ns_help_unload_oneline[];
|
|
|
|
extern const char ns_help_jupe_oneline[];
|
2004-01-26 11:33:52 +00:00
|
|
|
extern const char ns_help_exclude_oneline[];
|
2003-11-19 22:52:53 +00:00
|
|
|
#ifdef USE_RAW
|
2003-11-27 22:49:10 +00:00
|
|
|
extern const char ns_help_raw_oneline[];
|
2003-11-19 22:52:53 +00:00
|
|
|
#endif
|
2003-11-27 22:49:10 +00:00
|
|
|
extern const char ns_help_debug_oneline[];
|
|
|
|
extern const char ns_help_botlist_oneline[];
|
|
|
|
extern const char ns_help_socklist_oneline[];
|
|
|
|
extern const char ns_help_timerlist_oneline[];
|
|
|
|
extern const char ns_help_botchanlist_oneline[];
|
|
|
|
extern const char ns_help_modlist_oneline[];
|
|
|
|
extern const char ns_help_userdump_oneline[];
|
|
|
|
extern const char ns_help_chandump_oneline[];
|
|
|
|
extern const char ns_help_serverdump_oneline[];
|
2004-05-28 09:38:31 +00:00
|
|
|
extern const char ns_help_bandump_oneline[];
|
2003-11-19 22:52:53 +00:00
|
|
|
|
2003-11-18 11:51:09 +00:00
|
|
|
#endif /* _NS_HELP_H_ */
|