1 #ifndef __GUI_INTERFACE_H__
2 #define __GUI_INTERFACE_H__
3 
4 class GUI_Processor;
5 
6 void gui_new_processor(unsigned int pic_id);
7 void gui_new_source(unsigned int pic_id);
8 
9 void update_register(unsigned int reg_number);
10 void update_program_memory(GUI_Processor *gp, unsigned int reg_number);
11 
12 #endif /* __GUI_INTERFACE_H__ */
13