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