mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-15 22:38:08 +00:00
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:
@@ -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
|
||||
/*!
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user