From 4c714f2c24c5df78bae2f35c42c73107de4c8c71 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 18 Mar 2024 12:35:19 +0100 Subject: 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 --- Public/Kits/System.Zip/Zip.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Public/Kits/System.Zip/Zip.hpp') 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 #include -#include 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 -- cgit v1.2.3