--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/gui/gui.h Sat Mar 13 00:03:32 2004 +0000 @@ -0,0 +1,36 @@ +/* + * Gui related code + */ +#ifndef dream_gui_H +#define dream_gui_H 1 + +#include +#include "dream.h" + +#ifdef __cplusplus +extern "C" { +#if 0 +} +#endif +#endif + +void init_debug_win(GtkWidget *); +void open_file_dialog( void ); +void update_mmr_win( void ); +void init_mmr_win( void ); +void update_registers( void ); +void update_icount( void ); +void set_disassembly_region( unsigned int page ); +void set_disassembly_pc( unsigned int pc, gboolean select ); +void jump_to_disassembly( unsigned int addr, gboolean select ); + +extern GtkStyle *fixed_list_style; +extern GdkColor clrNormal, clrChanged, clrError, clrWarn, clrPC; + +void mmr_open_win( void ); +void mmr_close_win( void ); + +#ifdef __cplusplus +} +#endif +#endif