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