summaryrefslogtreecommitdiff
path: root/window_tag.h
blob: 41e941fc252afbc37e23eaa01af661fafc7ad7f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
	GHashTable *inconsistent_table;
};

struct tagdialog_data_t *window_tagview_new(GtkWidget*, GArray*);

#endif