1999-04-16 03:35:26 +02:00
|
|
|
#ifndef _TUI_REGS_H
|
|
|
|
#define _TUI_REGS_H
|
|
|
|
/*
|
1999-07-07 22:19:36 +02:00
|
|
|
** This header file supports the display of registers in the data window.
|
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** TYPE DEFINITIONS **
|
|
|
|
******************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************
|
|
|
|
** PUBLIC FUNCTION EXTERNAL DECLS **
|
|
|
|
******************************************/
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void tuiCheckRegisterValues (struct frame_info *);
|
|
|
|
extern void tuiShowRegisters (TuiRegisterDisplayType);
|
|
|
|
extern void tuiDisplayRegistersFrom (int);
|
|
|
|
extern int tuiDisplayRegistersFromLine (int, int);
|
|
|
|
extern int tuiLastRegsLineNo (void);
|
|
|
|
extern int tuiFirstRegElementInLine (int);
|
|
|
|
extern int tuiLastRegElementInLine (int);
|
|
|
|
extern int tuiLineFromRegElementNo (int);
|
|
|
|
extern void tuiToggleFloatRegs (void);
|
|
|
|
extern int tuiCalculateRegsColumnCount (TuiRegisterDisplayType);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
#endif
|
|
|
|
/*_TUI_REGS_H*/
|