Let's make application/function/hint lists read/write lists... just for kicks

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47037 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2006-11-02 21:40:53 +00:00
parent eee1b9e1fb
commit 7f7f2fe821
2 changed files with 98 additions and 95 deletions

View File

@@ -73,7 +73,7 @@ struct ast_custom_function {
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 */
AST_LIST_ENTRY(ast_custom_function) acflist;
AST_RWLIST_ENTRY(ast_custom_function) acflist;
};
/*! \brief All switch functions have the same interface, so define a type for them */