ultimatepp/uppdev/plugin/lzo/lzo.h
cxl d8f881f1d3 .uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@7822 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2014-10-24 06:51:50 +00:00

16 lines
305 B
C++

#ifndef _lzo_lzo_h
#define _lzo_lzo_h
#include <Core/Core.h>
#include "lib/minilzo.h"
namespace Upp {
String LZOCompress(const void *data, int len);
String LZOCompress(const String& s);
String LZODecompress(const void *data, int len);
String LZODecompress(const String& s);
};
#endif