diff options
author | Nao Pross <naopross@thearcway.org> | 2017-02-14 11:48:19 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-02-14 11:48:19 +0100 |
commit | 0bb03c0a1d96c23689cc420238a37b9fd15b739c (patch) | |
tree | f2c137723355541788327ae4da6dfc789e78936c /sw/linux/src/ui.h | |
parent | hw: created z80acpu in sch library (diff) | |
download | z80uPC-0bb03c0a1d96c23689cc420238a37b9fd15b739c.tar.gz z80uPC-0bb03c0a1d96c23689cc420238a37b9fd15b739c.zip |
sw: copied flash tool source from gameboymod
Diffstat (limited to 'sw/linux/src/ui.h')
-rw-r--r-- | sw/linux/src/ui.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sw/linux/src/ui.h b/sw/linux/src/ui.h new file mode 100644 index 0000000..44314d6 --- /dev/null +++ b/sw/linux/src/ui.h @@ -0,0 +1,17 @@ +#ifndef __Z80PROG_UI_H__ +#define __Z80PROG_UI_H_ + +#include <stdbool.h> +#include <string.h> + +#include <gtk/gtk.h> + +void ui_init(int *argc, char **argv[]); +void ui_log(const char *msg, char type); + +void ui_file_set(GtkFileChooserButton *btn, gpointer user_data); + +void ui_connect_clicked(void); +void ui_flash_clicked(void); + +#endif |