Skip to content
Snippets Groups Projects
Commit ec67c650 authored by Luigi Rizzo's avatar Luigi Rizzo
Browse files

some fields are const


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17226 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 95de5152
No related branches found
No related tags found
No related merge requests found
......@@ -73,10 +73,10 @@ typedef int (*ast_state_cb_type)(char *context, char* id, enum ast_extension_sta
/*! Data structure associated with a custom function */
struct ast_custom_function {
char *name;
char *synopsis;
char *desc;
char *syntax;
const char *name;
const char *synopsis;
const char *desc;
const char *syntax;
int (*read)(struct ast_channel *, char *, char *, char *, size_t);
int (*write)(struct ast_channel *, char *, char *, const char *);
struct ast_custom_function *next;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment