summaryrefslogtreecommitdiff
path: root/window_tag.h
diff options
context:
space:
mode:
Diffstat (limited to 'window_tag.h')
-rw-r--r--window_tag.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/window_tag.h b/window_tag.h
new file mode 100644
index 0000000..96fceac
--- /dev/null
+++ b/window_tag.h
@@ -0,0 +1,15 @@
+#ifndef _WINDOW_TAG_H_
+#define _WINDOW_TAG_H_
+
+#include <gtk/gtk.h>
+#include <glib.h>
+
+struct tagdialog_data_t {
+ GtkWidget *dialog;
+ GtkWidget *tagview;
+ GArray *wallarray;
+};
+
+struct tagdialog_data_t *window_tagview_new(GtkWidget*, GArray*);
+
+#endif