aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-23 23:09:11 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-23 23:09:11 +0000
commit015b65c8bc9df2a0ffe4d4b278e6021c2b604947 (patch)
treedc28504b5f79693874c0f9cd27a257eb6cbae878 /include
parentb768b736201f349bf17bf3f4346ebd38dc58365a (diff)
Move code from res_features into (new file) main/features.c
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@100039 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/_private.h1
-rw-r--r--include/asterisk/features.h3
2 files changed, 4 insertions, 0 deletions
diff --git a/include/asterisk/_private.h b/include/asterisk/_private.h
index 06163cd53..33ba83593 100644
--- a/include/asterisk/_private.h
+++ b/include/asterisk/_private.h
@@ -32,6 +32,7 @@ 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 */
/*!
* \brief Reload asterisk modules.
diff --git a/include/asterisk/features.h b/include/asterisk/features.h
index aa145a961..6e2ae1eab 100644
--- a/include/asterisk/features.h
+++ b/include/asterisk/features.h
@@ -109,4 +109,7 @@ struct ast_call_feature *ast_find_call_feature(const char *name);
void ast_rdlock_call_features(void);
void ast_unlock_call_features(void);
+/*! \brief Reload call features from features.conf */
+int ast_features_reload(void);
+
#endif /* _AST_FEATURES_H */