1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*
* 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. <grin>
*
* V1.0 - jzitt
* * initial release based on V1.2.3
*/
#ifndef RG_ERROR_H
#define RG_ERROR_H
#include <string.h>
#ifdef asWIN32DLL
#include <windows.h>
#include <mmsystem.h>
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 <stdio.h>
#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
|