aboutsummaryrefslogtreecommitdiff
path: root/src/conversion.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversion.h')
-rw-r--r--src/conversion.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/conversion.h b/src/conversion.h
new file mode 100644
index 0000000..b5b0fb5
--- /dev/null
+++ b/src/conversion.h
@@ -0,0 +1,16 @@
+/*
+ * conversion.h
+ *
+ * Created on: 13.01.2018
+ * Author: Superleo1810
+ *
+ * This file contains conversion macros from gtk to corresponding std-c datatypes
+ */
+
+#ifndef CONVERSION_H_
+#define CONVERSION_H_
+
+// (gchar *) to (char *)
+#define CHAR_PTR(x) (x)
+
+#endif /* CONVERSION_H_ */