fixes related to the change of FLAC__VERSION_STRING from a #define to an identifier

This commit is contained in:
Josh Coalson
2002-09-25 06:09:47 +00:00
parent 7dfd40de07
commit 82738b303c
4 changed files with 12 additions and 11 deletions

View File

@@ -28,11 +28,14 @@
#endif
#define min(a,b) ((a)<(b)?(a):(b))
/* VERSION should come from configure */
const char *FLAC__VERSION_STRING = VERSION;
#if defined _MSC_VER || defined __MINW32__
/* yet one more hack because of MSVC6: */
const FLAC__byte *FLAC__VENDOR_STRING = "reference libFLAC 1.0.4_beta 20020910";
const char *FLAC__VENDOR_STRING = "reference libFLAC 1.0.4 20020924";
#else
const FLAC__byte *FLAC__VENDOR_STRING = "reference libFLAC " FLAC__VERSION_STRING " 20020910";
const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20020924";
#endif
const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };

View File

@@ -120,7 +120,7 @@ void config(HWND hwndParent)
}
void about(HWND hwndParent)
{
MessageBox(hwndParent, "Winamp FLAC Plugin v" FLAC__VERSION_STRING ", by Josh Coalson\nSee http://flac.sourceforge.net/", "About FLAC Plugin", MB_OK);
MessageBox(hwndParent, "Winamp FLAC Plugin v" VERSION ", by Josh Coalson\nSee http://flac.sourceforge.net/", "About FLAC Plugin", MB_OK);
}
void init()
@@ -203,6 +203,7 @@ void unpause()
paused_ = 0;
mod_.outMod->Pause(0);
}
int ispaused()
{
return paused_;
@@ -357,7 +358,7 @@ DWORD WINAPI __stdcall DecodeThread(void *b)
In_Module mod_ =
{
IN_VER,
"Reference FLAC Player v" FLAC__VERSION_STRING,
"Reference FLAC Player v" VERSION,
0, /* hMainWindow */
0, /* hDllInstance */
"FLAC\0FLAC Audio File (*.FLAC)\0"

View File

@@ -80,7 +80,7 @@ InputPlugin flac_ip =
{
NULL,
NULL,
"Reference FLAC Player v" FLAC__VERSION_STRING,
"Reference FLAC Player v" VERSION,
FLAC_XMMS__init,
FLAC_XMMS__aboutbox,
FLAC_XMMS__configure,