00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00025 # ifndef LIBMAD_VERSION_H
00026 # define LIBMAD_VERSION_H
00027
00028 # define MAD_VERSION_MAJOR 0
00029 # define MAD_VERSION_MINOR 15
00030 # define MAD_VERSION_PATCH 1
00031 # define MAD_VERSION_EXTRA " (beta)"
00032
00033 # define MAD_VERSION_STRINGIZE(str) #str
00034 # define MAD_VERSION_STRING(num) MAD_VERSION_STRINGIZE(num)
00035
00036 # define MAD_VERSION MAD_VERSION_STRING(MAD_VERSION_MAJOR) "." \
00037 MAD_VERSION_STRING(MAD_VERSION_MINOR) "." \
00038 MAD_VERSION_STRING(MAD_VERSION_PATCH) \
00039 MAD_VERSION_EXTRA
00040
00041 # define MAD_PUBLISHYEAR "2000-2004"
00042 # define MAD_AUTHOR "Underbit Technologies, Inc."
00043 # define MAD_EMAIL "info at underbit com"
00044
00045 extern char const mad_version[];
00046 extern char const mad_copyright[];
00047 extern char const mad_author[];
00048 extern char const mad_build[];
00049
00050 # endif