Ignore:
Timestamp:
09/17/07 18:41:38 (17 years ago)
Author:
r2d
Message:

added version info for mpcdec and mpcgain

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/mpcgain/mpcgain.c

    r252 r344  
    4242#include "../libmpcdec/mpc_bits_reader.h"
    4343
     44#define MPCGAIN_MAJOR 0
     45#define MPCGAIN_MINOR 9
     46#define MPCGAIN_BUILD 0
     47
     48#define _cat(a,b,c) #a"."#b"."#c
     49#define cat(a,b,c) _cat(a,b,c)
     50#define MPCGAIN_VERSION cat(MPCGAIN_MAJOR,MPCGAIN_MINOR,MPCGAIN_BUILD)
     51
     52const char    About []        = "mpcgain - musepack (mpc) replaygain calculator v" MPCGAIN_VERSION " (C) 2006-2007 MDT\nBuilt " __DATE__ " " __TIME__ "\n";
     53
     54
    4455static void usage(const char *exename)
    4556{
     
    5667        mpc_uint32_t * header_pos;
    5768        int j;
     69
     70        printf(About);
    5871
    5972        if(argc < 2) {
Note: See TracChangeset for help on using the changeset viewer.