Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / simulator / gui / gtk_gui.h @ 1006

History | View | Annotate | Download (434 Bytes)

1 962 bcoltin
/**
2
 * @file gtk_gui.c
3
 * @author Brian Coltin
4
 *
5
 * A header file for functions to create and utilize
6
 * a GUI based on GTK.
7
 **/
8
9
/**
10
 * Run the GTK GUI. This function is blocking and
11
 * does not return until the GUI closes.
12
 *
13
 * @param argc argc as passed to main
14
 * @param argv argv as passed to main
15
 *
16
 * @return nonzero on failure, or 0 on window closure
17
 **/
18 971 bcoltin
int gtk_gui_run(int argc, char** argv);
19 962 bcoltin
20 1006 bcoltin
void gui_refresh(void);