diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-05-13 18:39:44 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-05-13 18:39:44 -0400 |
| commit | a80b3f69ac88e7621e0c658ce17b226d7171eeb6 (patch) | |
| tree | db82f286412c75f3db8a34a53121000acb214154 /binaryninjaapi.h | |
| parent | cd1ac400a80898b1f6394ce518b0ba92f69fa3e1 (diff) | |
zlib compression transform
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 50a67b3f..10ceda55 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -194,6 +194,9 @@ namespace BinaryNinja static DataBuffer FromEscapedString(const std::string& src); std::string ToBase64() const; static DataBuffer FromBase64(const std::string& src); + + bool ZlibCompress(DataBuffer& output) const; + bool ZlibDecompress(DataBuffer& output) const; }; class TemporaryFile: public RefCountObject |
