summaryrefslogtreecommitdiff
path: root/linux/custom.h
diff options
context:
space:
mode:
Diffstat (limited to 'linux/custom.h')
-rw-r--r--linux/custom.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/linux/custom.h b/linux/custom.h
new file mode 100644
index 0000000..4fd6ee2
--- /dev/null
+++ b/linux/custom.h
@@ -0,0 +1,21 @@
+#ifndef _CUSTOM_H_
+#define _CUSTOM_H_
+
+#include <gtk/gtk.h>
+
+// User preferences
+typedef struct
+{
+ char view_main_toolbar;
+ char view_tool_toolbar;
+ char view_anim_toolbar;
+
+ GtkToolbarStyle toolbar_style;
+} userrc_t;
+
+extern userrc_t user_rc;
+
+
+void init_rc (void);
+
+#endif