aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/config_old.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-30 18:32:10 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-30 18:32:10 +0000
commit3c4140b8b100b2e54e8ab6db85354576483c9ec5 (patch)
tree6a1252e074cadda423d1a34d51882f28a67a4092 /include/asterisk/config_old.h
parent410e2e9c48ce7f05be14febc7080b1f6c93a9ce8 (diff)
major header file cleanup: license, copyrights, descriptions, markers, etc.
remove deprecated config_old.c/config_old.h remove unused cvsid.h git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6454 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/config_old.h')
-rwxr-xr-xinclude/asterisk/config_old.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/include/asterisk/config_old.h b/include/asterisk/config_old.h
deleted file mode 100755
index dcde09932..000000000
--- a/include/asterisk/config_old.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Asterisk -- A telephony toolkit for Linux.
- *
- * Configuration File Parser (Deprecated APIs)
- *
- * Copyright (C) 1999-2005, Mark Spencer
- *
- * Mark Spencer <markster@digium.com>
- *
- * This program is free software, distributed under the terms of
- * the GNU General Public License
- */
-
-#ifndef _ASTERISK_CONFIG_OLD_H
-#define _ASTERISK_CONFIG_OLD_H
-
-/*! Load a config file */
-/*!
- * \param configfile path of file to open. If no preceding '/' character, path is considered relative to AST_CONFIG_DIR
- * Create a config structure from a given configuration file.
- * Returns NULL on error, or an ast_config data structure on success
- */
-struct ast_config *ast_load(char *configfile);
-
-/*! Removes a config */
-/*!
- * \param config config data structure associated with the config.
- * Free memory associated with a given config
- * Returns nothing
- */
-void ast_destroy(struct ast_config *config);
-
-/*! Free variable list */
-/*!
- * \param var the linked list of variables to free
- * This function frees a list of variables.
- */
-void ast_destroy_realtime(struct ast_variable *var);
-
-struct ast_config *ast_internal_load(const char *configfile, struct ast_config *cfg);
-
-#endif