diff options
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 378e933..7f0a4e6 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1176,20 +1176,24 @@ extern void forget_cached_source_info (void); extern void select_source_symtab (struct symtab *); extern VEC (char_ptr) *default_make_symbol_completion_list_break_on - (char *text, char *word, const char *break_on, + (const char *text, const char *word, const char *break_on, enum type_code code); -extern VEC (char_ptr) *default_make_symbol_completion_list (char *, char *, +extern VEC (char_ptr) *default_make_symbol_completion_list (const char *, + const char *, enum type_code); -extern VEC (char_ptr) *make_symbol_completion_list (char *, char *); -extern VEC (char_ptr) *make_symbol_completion_type (char *, char *, +extern VEC (char_ptr) *make_symbol_completion_list (const char *, const char *); +extern VEC (char_ptr) *make_symbol_completion_type (const char *, const char *, enum type_code); extern VEC (char_ptr) *make_symbol_completion_list_fn (struct cmd_list_element *, - char *, char *); + const char *, + const char *); -extern VEC (char_ptr) *make_file_symbol_completion_list (char *, - char *, char *); +extern VEC (char_ptr) *make_file_symbol_completion_list (const char *, + const char *, + const char *); -extern VEC (char_ptr) *make_source_files_completion_list (char *, char *); +extern VEC (char_ptr) *make_source_files_completion_list (const char *, + const char *); /* symtab.c */ |