|
From: <dan...@us...> - 2009-05-07 10:33:23
|
Revision: 1265
http://cegcc.svn.sourceforge.net/cegcc/?rev=1265&view=rev
Author: dannybackx
Date: 2009-05-07 10:33:13 +0000 (Thu, 07 May 2009)
Log Message:
-----------
Version file for release 0.55
Added Paths:
-----------
tags/cegcc-0.55/src/w32api/include/cegcc.h
Added: tags/cegcc-0.55/src/w32api/include/cegcc.h
===================================================================
--- tags/cegcc-0.55/src/w32api/include/cegcc.h (rev 0)
+++ tags/cegcc-0.55/src/w32api/include/cegcc.h 2009-05-07 10:33:13 UTC (rev 1265)
@@ -0,0 +1,35 @@
+/*
+ * Version information about CeGCC
+ */
+#ifndef _CEGCC_H_
+#define _CEGCC_H_
+
+#ifndef __CEGCC_VERSION__
+#error __CEGCC_VERSION__ isn't defined by the compiler. Huh?
+#endif
+
+#undef __CEGCC_VERSION__
+
+/* Automatic changes below */
+#define __CEGCC_VERSION_MAJOR__ 0
+#define __CEGCC_VERSION_MINOR__ 55
+#define __CEGCC_VERSION_PATCHLEVEL__
+#define __CEGCC_BUILD_DATE__ 20090507
+/* Automatic changes above */
+
+#define __CEGCC_VERSION__ \
+ (((__CEGCC_VERSION_MAJOR__) << 16) \
+ + ((__CEGCC_VERSION_MINOR__) << 8) \
+ + (__CEGCC_PATCHLEVEL__))
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int _CeGCCVersion(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _CEGCC_H_ */
Property changes on: tags/cegcc-0.55/src/w32api/include/cegcc.h
___________________________________________________________________
Added: svn:eol-style
+ native
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|