home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 March / ENTER.ISO / files / fwp-0.0.6-win32-installer.exe / version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-18  |  611 b   |  26 lines

  1. #ifndef __version_h__
  2. #define __version_h__
  3.  
  4. /*!
  5. \file version.h
  6. \author Karsten Schwenk
  7.  
  8. \brief This file contains nothing more than the version info of the game (a few defines to use in the other files).
  9.  
  10. */
  11.  
  12. #define FWP_VERSION_MAJOR    0
  13. #define FWP_VERSION_MINOR    0
  14. #define FWP_VERSION_RELEASE    6
  15. #define FWP_VERSION_STRING    "0.0.6"
  16.  
  17. #ifdef WIN32
  18. #define FWP_OS_STRING        "win32"
  19. #else
  20. #define FWP_OS_STRING        "linux"        //!< a string describing the OS that this version of FWP was compiled for
  21. #endif
  22.  
  23. #define FWP_COPYRIGHT_NOTE    "Copyright (c) 2004 The FWP-Team"
  24.  
  25. #endif    /* __version_h__ */
  26.