From 4231c2c83f2b5331e3e38b10a308ee3752315f9c Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 26 Sep 2020 17:19:07 -0400 Subject: codecs: Add support for the 'VTX' ZX Spectrum chiptunes format. This codec requires floating point. Original author: Peter Sovietov Ported to Rockbox: Roman Skylarov Further integration and bugfixes: Solomon Peachy Change-Id: I781ecd3592dfcdbbc694063334350342534f1d6c --- lib/rbcodec/codecs/libayumi/lzh.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/rbcodec/codecs/libayumi/lzh.h (limited to 'lib/rbcodec/codecs/libayumi/lzh.h') diff --git a/lib/rbcodec/codecs/libayumi/lzh.h b/lib/rbcodec/codecs/libayumi/lzh.h new file mode 100644 index 0000000000..5d896a56a3 --- /dev/null +++ b/lib/rbcodec/codecs/libayumi/lzh.h @@ -0,0 +1,6 @@ +#ifndef LZH_H +#define LZH_H + +int LzUnpack(void *pSrc, int srcSize, void *pDst, int dstSize); + +#endif /* ifndef LZH_H */ -- cgit v1.2.3