summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Zip/Zip.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-18 12:35:19 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-18 12:39:24 +0100
commit4c714f2c24c5df78bae2f35c42c73107de4c8c71 (patch)
treeb36d2498b8387909dac45c98097b8169636ad25a /Public/Kits/System.Zip/Zip.hpp
parenta4bfc396a78ddd553de519ab927d8479d0c3c45d (diff)
unstable, unrelated: See below.
- :boom: Breaking changes in System.Core.dll - Framebuffer, moved operator bool into c++ source file. - Remove zlib in favor of our own Zip API. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Zip/Zip.hpp')
-rw-r--r--Public/Kits/System.Zip/Zip.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Public/Kits/System.Zip/Zip.hpp b/Public/Kits/System.Zip/Zip.hpp
index 35d7da3a..425d3cc8 100644
--- a/Public/Kits/System.Zip/Zip.hpp
+++ b/Public/Kits/System.Zip/Zip.hpp
@@ -10,7 +10,6 @@
#include <CompilerKit/CompilerKit.hxx>
#include <System.Zip/Defines.hpp>
-#include <System.Zip/zlib.hpp>
namespace System::Zip {
class ZipStream;
@@ -26,14 +25,12 @@ class ZipStream final {
public:
FilePtr FlushToFile(const char *name);
void *Deflate(const char *name);
- void Inflate(const char *name, void *data);
+ void Inflate(const char *name, BYTE *data, QWORD sz);
private:
VoidPtr fSharedData{nullptr};
SizeT fSharedSz{0};
- private:
- z_stream fStream;
};
} // namespace System.Zip