PARAMS elimination.

This commit is contained in:
Kevin Buettner 2000-06-20 07:13:39 +00:00
parent 1605fc4f2a
commit f6dd1e7029
2 changed files with 9 additions and 10 deletions

View File

@ -1,3 +1,7 @@
2000-06-20 Kevin Buettner <kevinb@redhat.com>
* tuiLayout.c: Eliminate use of PARAMS from this file.
2000-06-17 Kevin Buettner <kevinb@redhat.com>
* tuiIO.c: Eliminate use of PARAMS from this file.

View File

@ -20,18 +20,13 @@
** Static Local Decls
********************************/
static void _initGenWinInfo PARAMS
((TuiGenWinInfoPtr, TuiWinType, int, int, int, int));
static void _initAndMakeWin PARAMS
((Opaque *, TuiWinType, int, int, int, int, int));
static void _showSourceOrDisassemAndCommand PARAMS
((TuiLayoutType));
static void _makeSourceOrDisassemWindow PARAMS
((TuiWinInfoPtr *, TuiWinType, int, int));
static void _initGenWinInfo (TuiGenWinInfoPtr, TuiWinType, int, int, int, int);
static void _initAndMakeWin (Opaque *, TuiWinType, int, int, int, int, int);
static void _showSourceOrDisassemAndCommand (TuiLayoutType);
static void _makeSourceOrDisassemWindow (TuiWinInfoPtr *, TuiWinType, int, int);
static void _makeCommandWindow (TuiWinInfoPtr *, int, int);
static void _makeSourceWindow (TuiWinInfoPtr *, int, int);
static void _makeDisassemWindow PARAMS
((TuiWinInfoPtr *, int, int));
static void _makeDisassemWindow (TuiWinInfoPtr *, int, int);
static void _makeDataWindow (TuiWinInfoPtr *, int, int);
static void _showSourceCommand (void);
static void _showDisassemCommand (void);