00001 /* Allegro MP3 - a wrapper for mpglib from mpg123 */ 00002 /* to play MP3 files with Allegro */ 00003 00004 /* MP3 decoder part of mpglib from mpg123 (www.mpg123.com) */ 00005 /* Allegro MP3 is copyright (c) 2001, 2002 Javier Gonz lez */ 00006 00007 /* See COPYING.txt (GNU Lesser General Public License 2.1) for license */ 00008 00009 00010 #ifndef ALMP3_DLL_DECLSPEC 00011 # ifdef ALMP3_DLL 00012 # ifdef ALMP3_DLL_EXPORTS 00013 # define ALMP3_DLL_DECLSPEC __declspec(dllexport) 00014 # else 00015 # define ALMP3_DLL_DECLSPEC __declspec(dllimport) 00016 # endif 00017 # else 00018 # define ALMP3_DLL_DECLSPEC 00019 # endif 00020 #endif