2013-10-04 17:54:40 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
// **** WAVPACK **** //
|
|
|
|
// Hybrid Lossless Wavefile Compressor //
|
|
|
|
// Copyright (c) 1998 - 2006 Conifer Software. //
|
|
|
|
// All Rights Reserved. //
|
|
|
|
// Distributed under the BSD Software License (see license.txt) //
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// wavpack_version.h
|
|
|
|
|
|
|
|
#ifndef WAVPACK_VERSION_H
|
|
|
|
#define WAVPACK_VERSION_H
|
|
|
|
|
2016-08-28 20:03:54 +00:00
|
|
|
#define LIBWAVPACK_MAJOR 5
|
|
|
|
#define LIBWAVPACK_MINOR 0
|
2013-10-21 03:06:14 +00:00
|
|
|
#define LIBWAVPACK_MICRO 0
|
2016-08-28 20:03:54 +00:00
|
|
|
#define LIBWAVPACK_VERSION_STRING "5.0.0-alpha4"
|
2013-10-04 17:54:40 +00:00
|
|
|
|
|
|
|
#endif
|