summaryrefslogtreecommitdiff
path: root/meta/3rd/Defold/library/zlib.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Defold/library/zlib.lua')
-rw-r--r--meta/3rd/Defold/library/zlib.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/3rd/Defold/library/zlib.lua b/meta/3rd/Defold/library/zlib.lua
new file mode 100644
index 00000000..9d05c192
--- /dev/null
+++ b/meta/3rd/Defold/library/zlib.lua
@@ -0,0 +1,18 @@
+---Zlib compression API documentation
+---Functions for compression and decompression of string buffers.
+---@class zlib
+zlib = {}
+---A lua error is raised is on error
+---@param buf string # buffer to deflate
+---@return string # deflated buffer
+function zlib.deflate(buf) end
+
+---A lua error is raised is on error
+---@param buf string # buffer to inflate
+---@return string # inflated buffer
+function zlib.inflate(buf) end
+
+
+
+
+return zlib \ No newline at end of file