From: <dan...@us...> - 2007-12-06 21:47:28
|
Revision: 1086 http://cegcc.svn.sourceforge.net/cegcc/?rev=1086&view=rev Author: dannybackx Date: 2007-12-06 13:47:26 -0800 (Thu, 06 Dec 2007) Log Message: ----------- Version file for release 0.51.0 Added Paths: ----------- tags/cegcc-0.51.0/src/w32api/include/cegcc.h Added: tags/cegcc-0.51.0/src/w32api/include/cegcc.h =================================================================== --- tags/cegcc-0.51.0/src/w32api/include/cegcc.h (rev 0) +++ tags/cegcc-0.51.0/src/w32api/include/cegcc.h 2007-12-06 21:47:26 UTC (rev 1086) @@ -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__ 51 +#define __CEGCC_VERSION_PATCHLEVEL__ 0 +#define __CEGCC_BUILD_DATE__ 20071206 +/* 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.51.0/src/w32api/include/cegcc.h ___________________________________________________________________ Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |