diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-02-10 19:08:19 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-02-10 19:08:19 +0000 |
commit | 6a83354a43c2dc48a253ee15eb62ccd1a8cd1b48 (patch) | |
tree | ebb759b9cd5f1820cb1719a711fc04653840d8c8 /gdb/tui/tui.h | |
parent | 997470efab22c205bacdd7e0b207b53cdae3e936 (diff) | |
download | gdb-6a83354a43c2dc48a253ee15eb62ccd1a8cd1b48.zip gdb-6a83354a43c2dc48a253ee15eb62ccd1a8cd1b48.tar.gz gdb-6a83354a43c2dc48a253ee15eb62ccd1a8cd1b48.tar.bz2 |
2004-02-10 Andrew Cagney <cagney@redhat.com>
* defs.h: Do not include "tui.h".
* gdb_curses.h: New file.
* tui/tui-hooks.h: New file.
* tui/tui.h (tui_update_all_exec_infos): Delete declaration.
(tui_install_hooks, tui_remove_hooks): Delete declarations.
(tui_initialize_io): Delete declaration.
(tui_initialize_readline: Delete redundant declaration.
(struct tui_point): Delete definition.
* tui/tui-data.h (struct tui_point): Define.
* cli/cli-decode.c [TUI]: Include "tui/tui.h".
* utils.c: Include "tui/tui.h".
* tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
* printcmd.c [TUI]: Include "tui/tui.h".
* cli/cli-cmds.c [TUI]: Include "tui/tui.h".
* tui/tui-command.c: Include "gdb_curses.h".
* tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
* tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
* tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
* tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
* tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
* Makefile.in: Update all dependencies.
(tui_hooks_h, gdb_curses_h): Define.
(SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
Diffstat (limited to 'gdb/tui/tui.h')
-rw-r--r-- | gdb/tui/tui.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gdb/tui/tui.h b/gdb/tui/tui.h index 9ba1a35..d7b741c 100644 --- a/gdb/tui/tui.h +++ b/gdb/tui/tui.h @@ -54,12 +54,6 @@ enum tui_win_type UNDEFINED_WIN /* LAST */ }; -/* This is a point definition. */ -struct tui_point -{ - int x, y; -}; - /* GENERAL TUI FUNCTIONS */ /* tui.c */ extern CORE_ADDR tui_get_low_disassembly_address (CORE_ADDR, CORE_ADDR); @@ -94,15 +88,8 @@ extern enum tui_key_mode tui_current_key_mode; /* Change the TUI key mode by installing the appropriate readline keymap. */ extern void tui_set_key_mode (enum tui_key_mode mode); -extern void tui_initialize_io (void); - -extern void tui_initialize_readline (void); - extern int tui_active; -extern void tui_install_hooks (void); -extern void tui_remove_hooks (void); - extern void tui_show_source (const char *file, int line); extern struct ui_out *tui_out_new (struct ui_file *stream); @@ -110,8 +97,4 @@ extern struct ui_out *tui_out_new (struct ui_file *stream); /* tui-layout.c */ extern enum tui_status tui_set_layout_for_display_command (const char *name); -/* tui-winsource.c */ -extern void tui_update_all_exec_infos (void); - #endif - |