summaryrefslogtreecommitdiffstats
path: root/sw/linux/src/ui.h
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2017-02-14 11:48:19 +0100
committerNao Pross <naopross@thearcway.org>2017-02-14 11:48:19 +0100
commit0bb03c0a1d96c23689cc420238a37b9fd15b739c (patch)
treef2c137723355541788327ae4da6dfc789e78936c /sw/linux/src/ui.h
parenthw: created z80acpu in sch library (diff)
downloadz80uPC-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.h17
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