filename | src/gui/gui.h |
changeset | 1:eea311cfd33e |
next | 2:42349f6ea216 |
author | nkeynes |
date | Sat Mar 13 00:03:32 2004 +0000 (16 years ago) |
permissions | -rw-r--r-- |
last change | This commit was generated by cvs2svn to compensate for changes in r2, which included commits to RCS files with non-trunk default branches. |
file | annotate | diff | log | raw |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +00001.2 +++ b/src/gui/gui.h Sat Mar 13 00:03:32 2004 +00001.3 @@ -0,0 +1,36 @@1.4 +/*1.5 + * Gui related code1.6 + */1.7 +#ifndef dream_gui_H1.8 +#define dream_gui_H 11.9 +1.10 +#include <gnome.h>1.11 +#include "dream.h"1.12 +1.13 +#ifdef __cplusplus1.14 +extern "C" {1.15 +#if 01.16 +}1.17 +#endif1.18 +#endif1.19 +1.20 +void init_debug_win(GtkWidget *);1.21 +void open_file_dialog( void );1.22 +void update_mmr_win( void );1.23 +void init_mmr_win( void );1.24 +void update_registers( void );1.25 +void update_icount( void );1.26 +void set_disassembly_region( unsigned int page );1.27 +void set_disassembly_pc( unsigned int pc, gboolean select );1.28 +void jump_to_disassembly( unsigned int addr, gboolean select );1.29 +1.30 +extern GtkStyle *fixed_list_style;1.31 +extern GdkColor clrNormal, clrChanged, clrError, clrWarn, clrPC;1.32 +1.33 +void mmr_open_win( void );1.34 +void mmr_close_win( void );1.35 +1.36 +#ifdef __cplusplus1.37 +}1.38 +#endif1.39 +#endif
.