version.h 497 B

12345678910111213141516
  1. /*
  2. * version.h
  3. */
  4. #define SND_LIB_MAJOR 1 /**< major number of library version */
  5. #define SND_LIB_MINOR 1 /**< minor number of library version */
  6. #define SND_LIB_SUBMINOR 3 /**< subminor number of library version */
  7. #define SND_LIB_EXTRAVER 1000000 /**< extra version number, used mainly for betas */
  8. /** library version */
  9. #define SND_LIB_VERSION ((SND_LIB_MAJOR<<16)|\
  10. (SND_LIB_MINOR<<8)|\
  11. SND_LIB_SUBMINOR)
  12. /** library version (string) */
  13. #define SND_LIB_VERSION_STR "1.1.3"