home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Sound / LAME / Source / version.h < prev   
C/C++ Source or Header  |  1999-06-04  |  2KB  |  45 lines

  1. /*
  2.  *    Version numbering for LAME.
  3.  *
  4.  *    Copyright (c) 1999 A.L. Faber
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; see the file COPYING.  If not, write to
  18.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20.  
  21. #ifndef LAME_H_INCLUDED
  22. #define LAME_H_INCLUDED
  23.  
  24. #define LAME_MAJOR_VERSION    3    /* Major version number */
  25. #define LAME_MINOR_VERSION    11    /* Minor version number */
  26. #define LAME_ALPHAVERSION    0    /* Set number if this is an alpha version, otherwise zero */
  27. #define LAME_BETAVERSION    0    /* Set number if this is a beta version, otherwise zero */
  28.  
  29. #define PSY_MAJOR_VERSION    0    /* Major version number */
  30. #define PSY_MINOR_VERSION    40    /* Minor version number */
  31. #define PSY_ALPHAVERSION    0    /* Set number if this is an alpha version, otherwise zero */
  32. #define PSY_BETAVERSION        0    /* Set number if this is a beta version, otherwise zero */
  33.  
  34. #define MP3X_MAJOR_VERSION    0    /* Major version number */
  35. #define MP3X_MINOR_VERSION    40    /* Minor version number */
  36. #define MP3X_ALPHAVERSION    0    /* Set number if this is an alpha version, otherwise zero */
  37. #define MP3X_BETAVERSION    0    /* Set number if this is a beta version, otherwise zero */
  38.  
  39.  
  40. char* get_lame_version();        /* returns lame version number string */
  41. char* get_psy_version();        /* returns psy model version number string */
  42. char* get_mp3x_version();        /* returns mp3x version number string */
  43.  
  44. #endif
  45.