mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-17 02:02:22 +00:00
finish const-ifying ast_func_read()
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@49741 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -301,10 +301,10 @@ struct ast_channel_tech {
|
||||
struct ast_channel *(* const bridged_channel)(struct ast_channel *chan, struct ast_channel *bridge);
|
||||
|
||||
/*! \brief Provide additional read items for CHANNEL() dialplan function */
|
||||
int (* func_channel_read)(struct ast_channel *chan, char *function, char *data, char *buf, size_t len);
|
||||
int (* func_channel_read)(struct ast_channel *chan, const char *function, char *data, char *buf, size_t len);
|
||||
|
||||
/*! \brief Provide additional write items for CHANNEL() dialplan function */
|
||||
int (* func_channel_write)(struct ast_channel *chan, char *function, char *data, const char *value);
|
||||
int (* func_channel_write)(struct ast_channel *chan, const char *function, char *data, const char *value);
|
||||
};
|
||||
|
||||
struct ast_channel_spy_list; /*!< \todo Add explanation here */
|
||||
|
Reference in New Issue
Block a user