⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _private.h

📁 asterisk 是一个很有知名度开源软件
💻 H
字号:
/* * Prototypes for public functions only of internal interest, * normally not used by modules. * What goes here are typically *_init() routines. *//*! \file * * \brief * Prototypes for public functions only of internal interest, *  */#ifndef _ASTERISK__PRIVATE_H#define _ASTERISK__PRIVATE_Hint load_modules(unsigned int);		/*!< Provided by loader.c */int load_pbx(void);			/*!< Provided by pbx.c */int init_logger(void);			/*!< Provided by logger.c */void close_logger(void);		/*!< Provided by logger.c */int init_framer(void);			/*!< Provided by frame.c */int ast_term_init(void);		/*!< Provided by term.c */int astdb_init(void);			/*!< Provided by db.c */void ast_channels_init(void);		/*!< Provided by channel.c */void ast_builtins_init(void);		/*!< Provided by cli.c */int dnsmgr_init(void);			/*!< Provided by dnsmgr.c */ void dnsmgr_start_refresh(void);	/*!< Provided by dnsmgr.c */int dnsmgr_reload(void);		/*!< Provided by dnsmgr.c */void threadstorage_init(void);		/*!< Provided by threadstorage.c */void ast_event_init(void);		/*!< Provided by event.c */int ast_device_state_engine_init(void);	/*!< Provided by devicestate.c */int astobj2_init(void);			/*!< Provided by astobj2.c */int ast_file_init(void);		/*!< Provided by file.c */int ast_features_init(void);            /*!< Provided by features.c */void ast_autoservice_init(void);    /*!< Provided by autoservice.c *//*! * \brief Reload asterisk modules. * \param name the name of the module to reload * * This function reloads the specified module, or if no modules are specified, * it will reload all loaded modules. * * \note Modules are reloaded using their reload() functions, not unloading * them and loading them again. *  * \return 0 if the specified module was not found. * \retval 1 if the module was found but cannot be reloaded. * \retval -1 if a reload operation is already in progress. * \retval 2 if the specfied module was found and reloaded. */int ast_module_reload(const char *name);#endif /* _ASTERISK__PRIVATE_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -