mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
a4542d8b6c
* fix: a few build problems * slob should not depends on MAKE_ZIM_SUPPORT * cmake failed to build when WITH_EPWING disabled. * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
18 lines
444 B
C++
18 lines
444 B
C++
#ifndef __DECOMPRESS_HH_INCLUDED__
|
|
#define __DECOMPRESS_HH_INCLUDED__
|
|
|
|
#include <QByteArray>
|
|
#include <string>
|
|
|
|
using std::string;
|
|
|
|
QByteArray zlibDecompress( const char * bufptr, unsigned length );
|
|
|
|
string decompressZlib( const char * bufptr, unsigned length );
|
|
|
|
string decompressBzip2( const char * bufptr, unsigned length );
|
|
|
|
string decompressLzma2( const char * bufptr, unsigned length, bool raw_decoder = false );
|
|
|
|
#endif // DECOMPRESS_HH
|