aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/config.h
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-24 20:29:41 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-24 20:29:41 +0000
commit10edb20a8e659e7a8468ec032aa5042fd70b6d86 (patch)
tree1affbf2f9fe7a7ec24e319146b7094431b6707e1 /include/asterisk/config.h
parent2c162efa7e1633695c3a96027f3aefc7e00910c3 (diff)
Doxygen additions, corrections
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@56665 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/config.h')
-rw-r--r--include/asterisk/config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/config.h b/include/asterisk/config.h
index c9b684cb6..5e1a6fc72 100644
--- a/include/asterisk/config.h
+++ b/include/asterisk/config.h
@@ -33,6 +33,8 @@ struct ast_config;
struct ast_category;
+/*! \brief Structure for variables, used for configurations and for channel variables
+*/
struct ast_variable {
char *name;
char *value;
@@ -50,6 +52,7 @@ typedef struct ast_variable *realtime_var_get(const char *database, const char *
typedef struct ast_config *realtime_multi_get(const char *database, const char *table, va_list ap);
typedef int realtime_update(const char *database, const char *table, const char *keyfield, const char *entity, va_list ap);
+/*! \brief Configuration engine structure, used to define realtime drivers */
struct ast_config_engine {
char *name;
config_load_func *load_func;