File: version.h

package info (click to toggle)
oss-libsalsa 4.1-build1052b-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,076 kB
  • ctags: 4,963
  • sloc: ansic: 14,899; makefile: 108; sh: 60
file content (15 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *  version.h
 */

#define SND_LIB_MAJOR		1 /**< major number of library version */
#define SND_LIB_MINOR		0 /**< minor number of library version */
#define SND_LIB_SUBMINOR	5 /**< subminor number of library version */
#define SND_LIB_EXTRAVER	1000000 /**< extra version number, used mainly for betas */
/** library version */
#define SND_LIB_VERSION		((SND_LIB_MAJOR<<16)|\
				 (SND_LIB_MINOR<<8)|\
				  SND_LIB_SUBMINOR)
/** library version (string) */
#define SND_LIB_VERSION_STR	"1.0.5"