Added so that version information is available in the SFML namespace.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1778 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2011-01-26 21:51:34 +00:00
parent cf779be180
commit 2a79a3ec49
2 changed files with 5 additions and 0 deletions

View file

@ -34,6 +34,9 @@ extern "C" void Init_system( void );
typedef VALUE ( *RubyFunctionPtr )( ... );
#define BINDING_VERSION "development"
#define LIB_VERSION "2.0"
#define MAX( x, y ) ( ( x ) < ( y ) ? ( y ) : ( x ) )
#define MIN( x, y ) ( ( x ) > ( y ) ? ( x ) : ( y ) )