mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-26 22:30:28 +00:00
Add a C++ compatible version of AST_CLI_DEFINE().
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@285057 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -183,9 +183,13 @@ struct ast_cli_entry {
|
|||||||
AST_LIST_ENTRY(ast_cli_entry) list;
|
AST_LIST_ENTRY(ast_cli_entry) list;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
|
#define AST_CLI_DEFINE(fn, txt) { { "" }, txt, NULL, 0, NULL, NULL, 0, 0, NULL, fn }
|
||||||
|
#else
|
||||||
/* XXX the parser in gcc 2.95 gets confused if you don't put a space
|
/* XXX the parser in gcc 2.95 gets confused if you don't put a space
|
||||||
* between the last arg before VA_ARGS and the comma */
|
* between the last arg before VA_ARGS and the comma */
|
||||||
#define AST_CLI_DEFINE(fn, txt , ... ) { .handler = fn, .summary = txt, ## __VA_ARGS__ }
|
#define AST_CLI_DEFINE(fn, txt , ... ) { .handler = fn, .summary = txt, ## __VA_ARGS__ }
|
||||||
|
#endif
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Helper function to generate cli entries from a NULL-terminated array.
|
* Helper function to generate cli entries from a NULL-terminated array.
|
||||||
|
|||||||
Reference in New Issue
Block a user