1999-10-27 00:56:38 +00:00
|
|
|
/*
|
|
|
|
* Asterisk -- A telephony toolkit for Linux.
|
|
|
|
*
|
|
|
|
* Options provided by main asterisk program
|
|
|
|
*
|
1999-12-11 20:09:45 +00:00
|
|
|
* Copyright (C) 1999, Mark Spencer
|
1999-10-27 00:56:38 +00:00
|
|
|
*
|
|
|
|
* Mark Spencer <markster@linux-support.net>
|
|
|
|
*
|
|
|
|
* This program is free software, distributed under the terms of
|
|
|
|
* the GNU General Public License
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASTERISK_OPTIONS_H
|
|
|
|
#define _ASTERISK_OPTIONS_H
|
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern int option_verbose;
|
|
|
|
extern int option_debug;
|
|
|
|
extern int option_nofork;
|
|
|
|
extern int option_quiet;
|
1999-12-22 23:07:49 +00:00
|
|
|
extern int option_console;
|
2001-12-25 21:12:07 +00:00
|
|
|
extern int option_initcrypto;
|
1999-12-22 23:07:49 +00:00
|
|
|
extern int fully_booted;
|
2000-01-09 19:58:18 +00:00
|
|
|
extern char defaultlanguage[];
|
1999-10-27 00:56:38 +00:00
|
|
|
|
|
|
|
#define VERBOSE_PREFIX_1 " "
|
|
|
|
#define VERBOSE_PREFIX_2 " == "
|
|
|
|
#define VERBOSE_PREFIX_3 " -- "
|
2001-12-25 21:12:07 +00:00
|
|
|
#define VERBOSE_PREFIX_4 " > "
|
1999-10-27 00:56:38 +00:00
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|