/* * ReplayGainAnalysis Error Reporting Header * Handles error reporting for mp3gain in either standalone or DLL form. * * Copyright (C) 2002 John Zitterkopf (zitt@bigfoot.com) * (http://www.zittware.com) * * These comments must remain intact in all copies of the source code. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * based on code by Glen Sawyer (mp3gain@hotmail.com) 735 W 255 N, Orem, UT 84057-4505 USA * * Error code for VC++5.0 by John Zitterkopf (zitt@bigfoot.com) * -- blame him for nothing. This work evolves as needed. * * V1.0 - jzitt * * initial release based on V1.2.3 */ #ifndef RG_ERROR_H #define RG_ERROR_H #include #ifdef asWIN32DLL #include #include MMRESULT mp3gainerr; char * mp3gainerrstr; BOOL blnCancel; HANDLE apphandle; //holds calling app's window handle int apppercentdonemsg; //holds calling apps message number for percent done int apperrmsg; //holds calling apps message number for errors LRESULT sendpercentdone( int pdone, long filesize ); #else /*asWIN32DLL*/ #include #define MMSYSERR_NOERROR 0 #define MMSYSERR_ERROR 01 #define WAVERR_BADFORMAT 32 typedef unsigned int MMRESULT; #endif /*asWIN32DLL*/ #define MP3GAIN_NOERROR MMSYSERR_NOERROR #define MP3GAIN_UNSPECIFED_ERROR MMSYSERR_ERROR #define MP3GAIN_FILEFORMAT_NOTSUPPORTED WAVERR_BADFORMAT #define MP3GAIN_CANCELLED 2006 void DoUnkError( char * localerrstr); void DoError( char * localerrstr, MMRESULT localerrnum ); #endif