summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Zip/Defines.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Public/Kits/System.Zip/Defines.hpp')
-rw-r--r--Public/Kits/System.Zip/Defines.hpp32
1 files changed, 24 insertions, 8 deletions
diff --git a/Public/Kits/System.Zip/Defines.hpp b/Public/Kits/System.Zip/Defines.hpp
index 4f954a4e..a894b672 100644
--- a/Public/Kits/System.Zip/Defines.hpp
+++ b/Public/Kits/System.Zip/Defines.hpp
@@ -1,14 +1,30 @@
-/*
- * ========================================================
- *
- * h-core
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#pragma once
#include <System.Core/System.hxx>
#define ZIPKIT_VERSION "1.01"
+
+/// @brief Zip compression function
+/// @param dest
+/// @param destLen
+/// @param source
+/// @param sourceLen
+/// @return
+CA_EXTERN_C DWORD HcCompress(BYTE *dest, QWORD *destLen, const BYTE *source,
+ QWORD sourceLen);
+
+/// @brief Zip uncompression function
+/// @param dest
+/// @param destLen
+/// @param source
+/// @param sourceLen
+/// @return
+CA_EXTERN_C DWORD HcUncompress(BYTE *dest, QWORD *destLen,
+ const BYTE *source, QWORD sourceLen);
+