* config/tc-alpha.c (O_samegp): New.
[external/binutils.git] / gdb / tui / tuiDataWin.c
index 8cebb36..cb670ed 100644 (file)
    Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
+/* If we need <curses.h>, we must include it before we get "bfd.h".  */
+#include "config.h"
+#ifdef HAVE_NCURSES_H       
+#include <ncurses.h>
+#else
+#ifdef HAVE_CURSES_H
+#include <curses.h>
+#endif
+#endif
+
 #include "defs.h"
 #include "tui.h"
 #include "tuiData.h"
+#include "tuiGeneralWin.h"
 #include "tuiRegs.h"
 
 
    **    If none are displayed, then return (-1).
  */
 int
-#ifdef __STDC__
 tuiFirstDataItemDisplayed (void)
-#else
-tuiFirstDataItemDisplayed ()
-#endif
 {
   int elementNo = (-1);
   int i;
@@ -71,13 +78,7 @@ tuiFirstDataItemDisplayed ()
    **        past the data area (-1) is returned.
  */
 int
-#ifdef __STDC__
-tuiFirstDataElementNoInLine (
-                             int lineNo)
-#else
-tuiFirstDataElementNoInLine (lineNo)
-     int lineNo;
-#endif
+tuiFirstDataElementNoInLine (int lineNo)
 {
   int firstElementNo = (-1);
 
@@ -101,11 +102,7 @@ tuiFirstDataElementNoInLine (lineNo)
    **        This is usually done when the data window is scrolled.
  */
 void
-#ifdef __STDC__
 tuiDeleteDataContentWindows (void)
-#else
-tuiDeleteDataContentWindows ()
-#endif
 {
   int i;
   TuiGenWinInfoPtr dataItemWinPtr;
@@ -124,13 +121,7 @@ tuiDeleteDataContentWindows ()
 
 
 void
-#ifdef __STDC__
-tuiEraseDataContent (
-                     char *prompt)
-#else
-tuiEraseDataContent (prompt)
-     char *prompt;
-#endif
+tuiEraseDataContent (char *prompt)
 {
   werase (dataWin->generic.handle);
   checkAndDisplayHighlightIfNeeded (dataWin);
@@ -160,11 +151,7 @@ tuiEraseDataContent (prompt)
    **        content.  It does not set the content.
  */
 void
-#ifdef __STDC__
 tuiDisplayAllData (void)
-#else
-tuiDisplayAllData ()
-#endif
 {
   if (dataWin->generic.contentSize <= 0)
     tuiEraseDataContent (NO_DATA_STRING);
@@ -193,13 +180,7 @@ tuiDisplayAllData ()
    **        data window.
  */
 void
-#ifdef __STDC__
-tuiDisplayDataFromLine (
-                        int lineNo)
-#else
-tuiDisplayDataFromLine (lineNo)
-     int lineNo;
-#endif
+tuiDisplayDataFromLine (int lineNo)
 {
   int _lineNo = lineNo;
 
@@ -247,15 +228,7 @@ tuiDisplayDataFromLine (lineNo)
    **        Display data starting at element elementNo
  */
 void
-#ifdef __STDC__
-tuiDisplayDataFrom (
-                    int elementNo,
-                    int reuseWindows)
-#else
-tuiDisplayDataFrom (elementNo, reuseWindows)
-     int elementNo;
-     int reuseWindows;
-#endif
+tuiDisplayDataFrom (int elementNo, int reuseWindows)
 {
   int firstLine = (-1);
 
@@ -282,11 +255,7 @@ tuiDisplayDataFrom (elementNo, reuseWindows)
    **        Function to redisplay the contents of the data window.
  */
 void
-#ifdef __STDC__
 tuiRefreshDataWin (void)
-#else
-tuiRefreshDataWin ()
-#endif
 {
   tuiEraseDataContent ((char *) NULL);
   if (dataWin->generic.contentSize > 0)
@@ -306,13 +275,7 @@ tuiRefreshDataWin ()
    **        Function to check the data values and hilite any that have changed
  */
 void
-#ifdef __STDC__
-tuiCheckDataValues (
-                    struct frame_info *frame)
-#else
-tuiCheckDataValues (frame)
-     struct frame_info *frame;
-#endif
+tuiCheckDataValues (struct frame_info *frame)
 {
   tuiCheckRegisterValues (frame);
 
@@ -345,41 +308,11 @@ tuiCheckDataValues (frame)
 
 
 /*
-   ** tui_vCheckDataValues().
-   **        Function to check the data values and hilite any that have
-   **        changed with args in a va_list
- */
-void
-#ifdef __STDC__
-tui_vCheckDataValues (
-                      va_list args)
-#else
-tui_vCheckDataValues (args)
-     va_list args;
-#endif
-{
-  struct frame_info *frame = va_arg (args, struct frame_info *);
-
-  tuiCheckDataValues (frame);
-
-  return;
-}                              /* tui_vCheckDataValues */
-
-
-/*
    ** tuiVerticalDataScroll()
    **        Scroll the data window vertically forward or backward.
  */
 void
-#ifdef __STDC__
-tuiVerticalDataScroll (
-                       TuiScrollDirection scrollDirection,
-                       int numToScroll)
-#else
-tuiVerticalDataScroll (scrollDirection, numToScroll)
-     TuiScrollDirection scrollDirection;
-     int numToScroll;
-#endif
+tuiVerticalDataScroll (TuiScrollDirection scrollDirection, int numToScroll)
 {
   int firstElementNo;
   int firstLine = (-1);