summaryrefslogtreecommitdiff
path: root/gdb/tui/tui-stack.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-01-28 23:16:50 +0000
committerAndrew Cagney <cagney@redhat.com>2004-01-28 23:16:50 +0000
commitaedec37d9519c62874f5a729bd1f9418c8818bc9 (patch)
tree49287281f3f7b637eb594867cc8cfa650b8cf2cd /gdb/tui/tui-stack.h
parentde126551a205a3e59cf74ff58d8d132659baaca9 (diff)
downloadgdb-aedec37d9519c62874f5a729bd1f9418c8818bc9.tar.gz
2004-01-28 Andrew Cagney <cagney@redhat.com>
* tui/tui-stack.h: Update copyright. (struct frame_info): Add opaque declaration. (tui_update_locator_filename): Rename tuiUpdateLocatorFilename. (tui_show_locator_content): Rename tuiShowLocatorContent. (tui_show_frame_info): Rename tuiShowFrameInfo. * tui/tui-stack.c: Update copyright. Update references. * tui/tui-winsource.c: Update references. * tui/tui-win.c: Update references. * tui/tui-layout.c: Update references. * tui/tui-hooks.c: Update copyright, update references. * tui/tui.c: Update copyright, update references. * tui/tui-disasm.c: Update references.
Diffstat (limited to 'gdb/tui/tui-stack.h')
-rw-r--r--gdb/tui/tui-stack.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/gdb/tui/tui-stack.h b/gdb/tui/tui-stack.h
index 14be4974bed..65725b3fd2f 100644
--- a/gdb/tui/tui-stack.h
+++ b/gdb/tui/tui-stack.h
@@ -1,5 +1,8 @@
/* TUI display locator.
- Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+
+ Copyright 1998, 1999, 2000, 2001, 2002, 2004 Free Software
+ Foundation, Inc.
+
Contributed by Hewlett-Packard Company.
This file is part of GDB.
@@ -19,15 +22,13 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef _TUI_STACK_H
-#define _TUI_STACK_H
-/*
- ** This header file supports
- */
+#ifndef TUI_STACK_H
+#define TUI_STACK_H
+
+struct frame_info;
-extern void tuiUpdateLocatorFilename (const char *);
-extern void tuiShowLocatorContent (void);
-extern void tuiShowFrameInfo (struct frame_info *);
+extern void tui_update_locator_filename (const char *);
+extern void tui_show_locator_content (void);
+extern void tui_show_frame_info (struct frame_info *);
#endif
-/*_TUI_STACK_H*/