mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-05 11:33:57 +01:00
13 lines
241 B
C
13 lines
241 B
C
/*
|
|
* version.h
|
|
*/
|
|
|
|
#define SND_UTIL_MAJOR 1
|
|
#define SND_UTIL_MINOR 1
|
|
#define SND_UTIL_SUBMINOR 3
|
|
#define SND_UTIL_VERSION ((SND_UTIL_MAJOR<<16)|\
|
|
(SND_UTIL_MINOR<<8)|\
|
|
SND_UTIL_SUBMINOR)
|
|
#define SND_UTIL_VERSION_STR "1.1.3"
|
|
|