Oops, we have to be able to pass multiple restrictions for when we go to voicemail...

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3937 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-10-07 19:57:50 +00:00
parent e1038e3090
commit ed62f449a9
7 changed files with 42 additions and 14 deletions

View File

@@ -114,7 +114,7 @@ int ast_category_exist(struct ast_config *config, char *category_name);
* that unlike the variables in ast_config, the resulting list of variables
* MUST be fred with ast_free_runtime() as there is no container.
*/
struct ast_variable *ast_load_realtime(const char *family, const char *keyfield, const char *lookup);
struct ast_variable *ast_load_realtime(const char *family, ...);
//! Update realtime configuration
/*!

View File

@@ -30,7 +30,7 @@ struct ast_category;
struct ast_config_reg {
char name[CONFIG_KEYWORD_STRLEN];
struct ast_config *(*static_func)(const char *database, const char *table, const char *, struct ast_config *,struct ast_category **,struct ast_variable **,int);
struct ast_variable *(*realtime_func)(const char *database, const char *table, const char *keyfield, const char *entity);
struct ast_variable *(*realtime_func)(const char *database, const char *table, va_list ap);
int (*update_func)(const char *database, const char *table, const char *keyfield, const char *entity, va_list ap);
struct ast_config_reg *next;
};