diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 22:56:35 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 22:56:35 +0100 |
commit | 97b5922a75b6f0337c2d3ae4bc62dc18347f861e (patch) | |
tree | 9a11aa45941d35061cefd59e787e93696f5b35c7 /src/conversion.h | |
parent | 78109333d989fa678c3c864defc4ef9d170f58ce (diff) |
Funktionierendes settings GUI
Diffstat (limited to 'src/conversion.h')
-rw-r--r-- | src/conversion.h | 16 |
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_ */ |