gas: support for the sparc %ncc condition codes register.
[deliverable/binutils-gdb.git] / gdb / command.h
index a5040a44327c9adab6b9990c6f6dd98274e10024..bdf625b5cfb2463283faea276b2eb1544d3c9057 100644 (file)
@@ -1,6 +1,6 @@
 /* Header file for command creation.
 
-   Copyright (C) 1986-2014 Free Software Foundation, Inc.
+   Copyright (C) 1986-2015 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -113,6 +113,8 @@ var_types;
 /* This structure records one command'd definition.  */
 struct cmd_list_element;
 
+typedef void cmd_cfunc_ftype (char *args, int from_tty);
+
 /* Forward-declarations of the entry-points of cli/cli-decode.c.  */
 
 /* API to the manipulation of command lists.  */
@@ -120,7 +122,8 @@ struct cmd_list_element;
 extern int valid_user_defined_cmd_name_p (const char *name);
 
 extern struct cmd_list_element *add_cmd (const char *, enum command_class,
-                                        void (*fun) (char *, int), char *,
+                                        cmd_cfunc_ftype *fun,
+                                        const char *,
                                         struct cmd_list_element **);
 
 extern struct cmd_list_element *add_alias_cmd (const char *, const char *,
@@ -128,25 +131,23 @@ extern struct cmd_list_element *add_alias_cmd (const char *, const char *,
                                               struct cmd_list_element **);
 
 extern struct cmd_list_element *add_prefix_cmd (const char *, enum command_class,
-                                               void (*fun) (char *, int),
-                                               char *,
+                                               cmd_cfunc_ftype *fun,
+                                               const char *,
                                                struct cmd_list_element **,
-                                               char *, int,
+                                               const char *, int,
                                                struct cmd_list_element **);
 
 extern struct cmd_list_element *add_abbrev_prefix_cmd (const char *,
                                                       enum command_class,
-                                                      void (*fun) (char *,
-                                                                   int),
-                                                      char *,
+                                                      cmd_cfunc_ftype *fun,
+                                                      const char *,
                                                       struct cmd_list_element
-                                                      **, char *, int,
+                                                      **, const char *, int,
                                                       struct cmd_list_element
                                                       **);
 
 /* Set the commands corresponding callback.  */
 
-typedef void cmd_cfunc_ftype (char *args, int from_tty);
 extern void set_cmd_cfunc (struct cmd_list_element *cmd,
                           cmd_cfunc_ftype *cfunc);
 
@@ -158,12 +159,20 @@ extern void set_cmd_sfunc (struct cmd_list_element *cmd,
 typedef VEC (char_ptr) *completer_ftype (struct cmd_list_element *,
                                         const char *, const char *);
 
+typedef void completer_ftype_void (struct cmd_list_element *,
+                                  const char *, const char *);
+
 extern void set_cmd_completer (struct cmd_list_element *, completer_ftype *);
 
+/* Set the completer_handle_brkchars callback.  */
+
+extern void set_cmd_completer_handle_brkchars (struct cmd_list_element *,
+                                              completer_ftype_void *);
+
 /* HACK: cagney/2002-02-23: Code, mostly in tracepoints.c, grubs
    around in cmd objects to test the value of the commands sfunc().  */
 extern int cmd_cfunc_eq (struct cmd_list_element *cmd,
-                        void (*cfunc) (char *args, int from_tty));
+                        cmd_cfunc_ftype *cfun);
 
 /* Each command object has a local context attached to it.  */
 extern void set_cmd_context (struct cmd_list_element *cmd,
@@ -193,7 +202,7 @@ extern struct cmd_list_element *lookup_cmd_1 (const char **,
                                              int);
 
 extern struct cmd_list_element *deprecate_cmd (struct cmd_list_element *,
-                                              char * );
+                                              const char * );
 
 extern void deprecated_cmd_warning (const char *);
 
@@ -203,17 +212,18 @@ extern int lookup_cmd_composition (const char *text,
                                   struct cmd_list_element **cmd);
 
 extern struct cmd_list_element *add_com (const char *, enum command_class,
-                                        void (*fun) (char *, int),
-                                        char *);
+                                        cmd_cfunc_ftype *fun,
+                                        const char *);
 
 extern struct cmd_list_element *add_com_alias (const char *, const char *,
                                               enum command_class, int);
 
 extern struct cmd_list_element *add_info (const char *,
-                                         void (*fun) (char *, int),
-                                         char *);
+                                         cmd_cfunc_ftype *fun,
+                                         const char *);
 
-extern struct cmd_list_element *add_info_alias (const char *, char *, int);
+extern struct cmd_list_element *add_info_alias (const char *, const char *,
+                                               int);
 
 extern VEC (char_ptr) *complete_on_cmdlist (struct cmd_list_element *,
                                            const char *, const char *, int);
@@ -223,7 +233,7 @@ extern VEC (char_ptr) *complete_on_enum (const char *const *enumlist,
 
 /* Functions that implement commands about CLI commands.  */
 
-extern void help_list (struct cmd_list_element *, char *,
+extern void help_list (struct cmd_list_element *, const char *,
                       enum command_class, struct ui_file *);
 
 /* Method for show a set/show variable's VALUE on FILE.  If this
@@ -238,7 +248,7 @@ typedef void (show_value_ftype) (struct ui_file *file,
 extern show_value_ftype deprecated_show_value_hack;
 
 extern void add_setshow_enum_cmd (const char *name,
-                                 enum command_class class,
+                                 enum command_class theclass,
                                  const char *const *enumlist,
                                  const char **var,
                                  const char *set_doc,
@@ -250,7 +260,7 @@ extern void add_setshow_enum_cmd (const char *name,
                                  struct cmd_list_element **show_list);
 
 extern void add_setshow_auto_boolean_cmd (const char *name,
-                                         enum command_class class,
+                                         enum command_class theclass,
                                          enum auto_boolean *var,
                                          const char *set_doc,
                                          const char *show_doc,
@@ -261,7 +271,7 @@ extern void add_setshow_auto_boolean_cmd (const char *name,
                                          struct cmd_list_element **show_list);
 
 extern void add_setshow_boolean_cmd (const char *name,
-                                    enum command_class class,
+                                    enum command_class theclass,
                                     int *var,
                                     const char *set_doc, const char *show_doc,
                                     const char *help_doc,
@@ -271,7 +281,7 @@ extern void add_setshow_boolean_cmd (const char *name,
                                     struct cmd_list_element **show_list);
 
 extern void add_setshow_filename_cmd (const char *name,
-                                     enum command_class class,
+                                     enum command_class theclass,
                                      char **var,
                                      const char *set_doc,
                                      const char *show_doc,
@@ -282,7 +292,7 @@ extern void add_setshow_filename_cmd (const char *name,
                                      struct cmd_list_element **show_list);
 
 extern void add_setshow_string_cmd (const char *name,
-                                   enum command_class class,
+                                   enum command_class theclass,
                                    char **var,
                                    const char *set_doc,
                                    const char *show_doc,
@@ -294,7 +304,7 @@ extern void add_setshow_string_cmd (const char *name,
 
 extern struct cmd_list_element *add_setshow_string_noescape_cmd
                      (const char *name,
-                      enum command_class class,
+                      enum command_class theclass,
                       char **var,
                       const char *set_doc,
                       const char *show_doc,
@@ -305,7 +315,7 @@ extern struct cmd_list_element *add_setshow_string_noescape_cmd
                       struct cmd_list_element **show_list);
 
 extern void add_setshow_optional_filename_cmd (const char *name,
-                                              enum command_class class,
+                                              enum command_class theclass,
                                               char **var,
                                               const char *set_doc,
                                               const char *show_doc,
@@ -316,7 +326,7 @@ extern void add_setshow_optional_filename_cmd (const char *name,
                                               struct cmd_list_element **show_list);
 
 extern void add_setshow_integer_cmd (const char *name,
-                                    enum command_class class,
+                                    enum command_class theclass,
                                     int *var,
                                     const char *set_doc,
                                     const char *show_doc,
@@ -327,7 +337,7 @@ extern void add_setshow_integer_cmd (const char *name,
                                     struct cmd_list_element **show_list);
 
 extern void add_setshow_uinteger_cmd (const char *name,
-                                     enum command_class class,
+                                     enum command_class theclass,
                                      unsigned int *var,
                                      const char *set_doc,
                                      const char *show_doc,
@@ -338,7 +348,7 @@ extern void add_setshow_uinteger_cmd (const char *name,
                                      struct cmd_list_element **show_list);
 
 extern void add_setshow_zinteger_cmd (const char *name,
-                                     enum command_class class,
+                                     enum command_class theclass,
                                      int *var,
                                      const char *set_doc,
                                      const char *show_doc,
@@ -349,7 +359,7 @@ extern void add_setshow_zinteger_cmd (const char *name,
                                      struct cmd_list_element **show_list);
 
 extern void add_setshow_zuinteger_cmd (const char *name,
-                                      enum command_class class,
+                                      enum command_class theclass,
                                       unsigned int *var,
                                       const char *set_doc,
                                       const char *show_doc,
@@ -361,7 +371,7 @@ extern void add_setshow_zuinteger_cmd (const char *name,
 
 extern void
   add_setshow_zuinteger_unlimited_cmd (const char *name,
-                                      enum command_class class,
+                                      enum command_class theclass,
                                       int *var,
                                       const char *set_doc,
                                       const char *show_doc,
@@ -373,12 +383,12 @@ extern void
 
 /* Do a "show" command for each thing on a command list.  */
 
-extern void cmd_show_list (struct cmd_list_element *, int, char *);
+extern void cmd_show_list (struct cmd_list_element *, int, const char *);
 
 /* Used everywhere whenever at least one parameter is required and
    none is specified.  */
 
-extern void error_no_arg (char *) ATTRIBUTE_NORETURN;
+extern void error_no_arg (const char *) ATTRIBUTE_NORETURN;
 
 extern void dont_repeat (void);
 
This page took 0.037327 seconds and 4 git commands to generate.