athena/include/Compression.hpp
2013-07-20 21:14:33 -07:00

18 lines
324 B
C++

#ifndef COMPRESSION_HPP
#define COMPRESSION_HPP
#include <Types.hpp>
namespace zelda
{
namespace io
{
namespace Compression
{
Int32 decompressZlib(Uint8* src, Uint32 srcLen, Uint8* dst, Uint32 dstLen);
void compressZlib(const Uint8* src, Uint32 srcLen, Uint8* dst, Uint32* dstLen);
}
}
}
#endif // COMPRESSION_HPP