aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/config_pvt.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-30 17:21:45 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-30 17:21:45 +0000
commitda65b9aa0ec7b5cbda86777c2138729c3e2ca238 (patch)
tree50bc502e5abea7ae3c31bd00422ebfe5710e8115 /include/asterisk/config_pvt.h
parent92d9c24897066d360e7f90d0c5361889aa828aac (diff)
Remove dead header file
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4928 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/config_pvt.h')
-rwxr-xr-xinclude/asterisk/config_pvt.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/include/asterisk/config_pvt.h b/include/asterisk/config_pvt.h
deleted file mode 100755
index 7d5273093..000000000
--- a/include/asterisk/config_pvt.h
+++ /dev/null
@@ -1,66 +0,0 @@
-#ifndef _ASTERISK_CONFIG_PVT_H
-#define _ASTERISK_CONFIG_PVT_H
-#if defined(__cplusplus) || defined(c_plusplus)
-extern "C" {
-#endif
-
-#include <stdarg.h>
-#define CONFIG_KEYWORD_STRLEN 128
-#define CONFIG_KEYWORD_ARRAYLEN 512
-#include <asterisk/config.h>
-
-#define MAX_INCLUDE_LEVEL 10
-
-struct ast_category {
- char name[80];
- struct ast_variable *root;
- struct ast_variable *last;
- struct ast_category *next;
-};
-
-struct ast_config {
- struct ast_category *root;
- struct ast_category *last;
-};
-
-typedef struct ast_config *config_static_func(const char *database, const char *table, const char *configfile, struct ast_config *config, struct ast_category **cat, int includelevel);
-
-struct ast_config_reg {
- char name[CONFIG_KEYWORD_STRLEN];
- config_static_func *static_func;
- struct ast_variable *(*realtime_func)(const char *database, const char *table, va_list ap);
- struct ast_config *(*realtime_multi_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;
-};
-
-int ast_config_register(struct ast_config_reg *new);
-int ast_config_deregister(struct ast_config_reg *del);
-void ast_cust_config_on(void);
-void ast_cust_config_off(void);
-int ast_cust_config_active(void);
-void ast_config_destroy_all(void);
-int ast_cust_config_register(struct ast_config_reg *new);
-int ast_cust_config_deregister(struct ast_config_reg *new);
-int register_config_cli(void);
-int read_ast_cust_config(void);
-
-struct ast_config *ast_new_config(void);
-
-struct ast_category *ast_new_category(char *name);
-void ast_category_append(struct ast_config *config, struct ast_category *cat);
-int ast_category_delete(struct ast_config *cfg, char *category);
-void ast_category_destroy(struct ast_category *cat);
-
-struct ast_variable *ast_new_variable(char *name,char *value);
-int ast_variable_delete(struct ast_config *cfg, char *category, char *variable, char *value);
-int ast_save(char *filename, struct ast_config *cfg, char *generator);
-
-struct ast_config *ast_internal_load(const char *configfile, struct ast_config *tmp, struct ast_category **cat, int includelevel);
-
-#if defined(__cplusplus) || defined(c_plusplus)
-}
-#endif
-
-
-#endif