X-Git-Url: https://repo.jachan.dev/binutils.git/blobdiff_plain/88a1906b0da33e2905cce61e133b67cdde314847..8579fd136a614985bd27f20539c7bb7c5a51287d:/gdb/python/python.h diff --git a/gdb/python/python.h b/gdb/python/python.h index ae808c0c82..d6ccba41e6 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-2021 Free Software Foundation, Inc. This file is part of GDB. @@ -17,25 +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; -void eval_python_from_control_command (struct command_line *); +/* Command element for the 'python' command. */ +extern cmd_list_element *python_cmd_element; -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_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 */