summaryrefslogtreecommitdiff
path: root/prev/gtkdtp/dtp.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-12-11 20:37:59 -0500
committerPietro Gagliardi <[email protected]>2015-12-11 20:37:59 -0500
commitf8e3f12ab02b528f2a05a4f713d7af7ea8e44b42 (patch)
tree82dedf4d37f0f6d31e88ebb2ca1ce6499dead261 /prev/gtkdtp/dtp.h
parente34c561ed5bedeb180437ec165882b98d70d38c1 (diff)
LET'S GET THIS FINAL REWRITE EVER STARTED
Diffstat (limited to 'prev/gtkdtp/dtp.h')
-rw-r--r--prev/gtkdtp/dtp.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/prev/gtkdtp/dtp.h b/prev/gtkdtp/dtp.h
new file mode 100644
index 0000000..3c936c6
--- /dev/null
+++ b/prev/gtkdtp/dtp.h
@@ -0,0 +1,21 @@
+// 9 january 2015
+#define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_32
+#define GLIB_VERSION_MAX_ALLOWED GLIB_VERSION_2_32
+#define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_4
+#define GDK_VERSION_MAX_ALLOWED GDK_VERSION_3_4
+#include <gtk/gtk.h>
+
+typedef struct goDateTimePicker goDateTimePicker;
+typedef struct goDateTimePickerClass goDateTimePickerClass;
+typedef struct goDateTimePickerPrivate goDateTimePickerPrivate;
+
+struct goDateTimePicker {
+ GtkBox parent_instance;
+ goDateTimePickerPrivate *priv;
+};
+
+struct goDateTimePickerClass {
+ GtkBoxClass parent_class;
+};
+
+GType goDateTimePicker_get_type(void);