00001 /* 00002 * Asterisk -- A telephony toolkit for Linux. 00003 * 00004 * Paths to configurable Asterisk directories 00005 * 00006 * Copyright (C) 1999-2006, Digium, Inc. 00007 * 00008 * Mark Spencer <markster@digium.com> 00009 * 00010 * This program is free software, distributed under the terms of 00011 * the GNU General Public License 00012 */ 00013 00014 /*! \file 00015 * \brief Asterisk file paths, configured in asterisk.conf 00016 */ 00017 00018 #ifndef _ASTERISK_PATHS_H 00019 #define _ASTERISK_PATHS_H 00020 00021 extern const char *ast_config_AST_CONFIG_DIR; 00022 extern const char *ast_config_AST_CONFIG_FILE; 00023 extern const char *ast_config_AST_MODULE_DIR; 00024 extern const char *ast_config_AST_SPOOL_DIR; 00025 extern const char *ast_config_AST_MONITOR_DIR; 00026 extern const char *ast_config_AST_VAR_DIR; 00027 extern const char *ast_config_AST_DATA_DIR; 00028 extern const char *ast_config_AST_LOG_DIR; 00029 extern const char *ast_config_AST_AGI_DIR; 00030 extern const char *ast_config_AST_DB; 00031 extern const char *ast_config_AST_KEY_DIR; 00032 extern const char *ast_config_AST_PID; 00033 extern const char *ast_config_AST_SOCKET; 00034 extern const char *ast_config_AST_RUN_DIR; 00035 extern const char *ast_config_AST_RUN_GROUP; 00036 extern const char *ast_config_AST_RUN_USER; 00037 extern const char *ast_config_AST_SYSTEM_NAME; 00038 00039 #endif /* _ASTERISK_PATHS_H */