mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
merge new_loader_completion branch, including (at least):
- restructured build tree and makefiles to eliminate recursion problems - support for embedded modules - support for static builds - simpler cross-compilation support - simpler module/loader interface (no exported symbols) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40722 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -51,7 +51,7 @@ extern char ast_config_AST_CTL[PATH_MAX];
|
||||
extern char ast_config_AST_SYSTEM_NAME[20];
|
||||
|
||||
int ast_set_priority(int); /*!< Provided by asterisk.c */
|
||||
int load_modules(const int preload_only); /*!< Provided by module.c */
|
||||
int load_modules(void); /*!< 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 */
|
||||
@@ -65,6 +65,12 @@ 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 */
|
||||
|
||||
/* Many headers need 'ast_channel' to be defined */
|
||||
struct ast_channel;
|
||||
|
||||
/* Many headers need 'ast_module' to be defined */
|
||||
struct ast_module;
|
||||
|
||||
/*!
|
||||
* \brief Reload asterisk modules.
|
||||
* \param name the name of the module to reload
|
||||
|
Reference in New Issue
Block a user