X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fpython%2Fpython.h;h=12b7af33676b9d481ec6350300f4a1b350c5bc90;hb=57d87c09a33acdce280f4c9ae4f55b885a5cee99;hp=04d5c2808ee405132bf8fc4127f3f4a630a30a9a;hpb=9dea9163560f26f9adddd13254ad32f4aea3b1d6;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/python/python.h b/gdb/python/python.h index 04d5c2808e..12b7af3367 100644 --- a/gdb/python/python.h +++ b/gdb/python/python.h @@ -1,6 +1,6 @@ /* Python/gdb header for generic use in gdb - Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2008-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -17,28 +17,15 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#ifndef GDB_PYTHON_H -#define GDB_PYTHON_H +#ifndef PYTHON_PYTHON_H +#define PYTHON_PYTHON_H -#include "value.h" +#include "extension.h" -extern int gdbpy_global_auto_load; +/* This is all that python exports to gdb. */ +extern const struct extension_language_defn extension_language_python; -extern void finish_python_initialization (void); +/* Command element for the 'python' command. */ +extern cmd_list_element *python_cmd_element; -void eval_python_from_control_command (struct command_line *); - -void source_python_script (FILE *stream, const char *file); - -int apply_val_pretty_printer (struct type *type, const gdb_byte *valaddr, - int embedded_offset, CORE_ADDR address, - struct ui_file *stream, int recurse, - const struct value *val, - const struct value_print_options *options, - const struct language_defn *language); - -void preserve_python_values (struct objfile *objfile, htab_t copied_types); - -void load_auto_scripts_for_objfile (struct objfile *objfile); - -#endif /* GDB_PYTHON_H */ +#endif /* PYTHON_PYTHON_H */