From ec3737e8352a7e366a47323e2d01d3aff005d602 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Fri, 5 Jan 2007 23:32:42 +0000 Subject: const-ify some more APIs, and fix rev 49710 from branch-1.4 in a better way here git-svn-id: http://svn.digium.com/svn/asterisk/trunk@49711 f38db490-d61c-443f-a65b-d21fe96a405b --- include/asterisk/astdb.h | 2 +- include/asterisk/pbx.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/asterisk/astdb.h b/include/asterisk/astdb.h index 828fe9725..887d9af5b 100644 --- a/include/asterisk/astdb.h +++ b/include/asterisk/astdb.h @@ -35,7 +35,7 @@ struct ast_db_entry { int ast_db_get(const char *family, const char *key, char *out, int outlen); -int ast_db_put(const char *family, const char *key, char *value); +int ast_db_put(const char *family, const char *key, const char *value); int ast_db_del(const char *family, const char *key); diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h index 0c94ea323..56d50eb56 100644 --- a/include/asterisk/pbx.h +++ b/include/asterisk/pbx.h @@ -74,8 +74,8 @@ struct ast_custom_function { const char *synopsis; /*!< Short description for "show functions" */ const char *desc; /*!< Help text that explains it all */ const char *syntax; /*!< Syntax description */ - int (*read)(struct ast_channel *, char *, char *, char *, size_t); /*!< Read function, if read is supported */ - int (*write)(struct ast_channel *, char *, char *, const char *); /*!< Write function, if write is supported */ + int (*read)(struct ast_channel *, const char *, char *, char *, size_t); /*!< Read function, if read is supported */ + int (*write)(struct ast_channel *, const char *, char *, const char *); /*!< Write function, if write is supported */ AST_RWLIST_ENTRY(ast_custom_function) acflist; }; @@ -844,7 +844,7 @@ int ast_active_calls(void); * * \return zero on success, non-zero on failure */ -int ast_func_read(struct ast_channel *chan, char *function, char *workspace, size_t len); +int ast_func_read(struct ast_channel *chan, const char *function, char *workspace, size_t len); /*! * \brief executes a write operation on a function @@ -857,7 +857,7 @@ int ast_func_read(struct ast_channel *chan, char *function, char *workspace, siz * * \return zero on success, non-zero on failure */ -int ast_func_write(struct ast_channel *chan, char *function, const char *value); +int ast_func_write(struct ast_channel *chan, const char *function, const char *value); void ast_hint_state_changed(const char *device); -- cgit v1.2.3