2013-10-04 14:54:40 -03:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
// **** WAVPACK **** //
|
|
|
|
// Hybrid Lossless Wavefile Compressor //
|
2020-03-22 04:15:45 -03:00
|
|
|
// Copyright (c) 1998 - 2019 David Bryant. //
|
2013-10-04 14:54:40 -03:00
|
|
|
// 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 17:03:54 -03:00
|
|
|
#define LIBWAVPACK_MAJOR 5
|
2020-03-22 04:15:45 -03:00
|
|
|
#define LIBWAVPACK_MINOR 2
|
2013-10-21 00:06:14 -03:00
|
|
|
#define LIBWAVPACK_MICRO 0
|
2020-03-22 04:15:45 -03:00
|
|
|
#define LIBWAVPACK_VERSION_STRING "5.2.0"
|
2013-10-04 14:54:40 -03:00
|
|
|
|
|
|
|
#endif
|