commit 329fb05f885239440c4713db05e6d61576f26b0e
parent 47df2a52474a01bb1af2c1aec4c9f57dfccfbef7
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Sat, 24 Dec 2011 03:18:57 +0100
header guard and version number defines
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/ansilove/alconfig.h b/ansilove/alconfig.h
@@ -9,6 +9,11 @@
// See the file LICENSE for details.
//
+#ifndef alconfig_h
+#define alconfig_h
+
+#define VERSION "1.0.0"
+
#define ANSILOVE_FILES_DIRECTORY "ansis/"
#define ANSILOVE_LOG_FILE "ansilove.log"
@@ -39,3 +44,5 @@
#define SPLIT "0"
#define SPLIT_HEIGHT "4096"
#define SPLIT_SEPARATOR "."
+
+#endif