mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 10:27:47 +02:00
28 lines
697 B
Lua
28 lines
697 B
Lua
--[[
|
|
Generated with github.com/astrochili/defold-annotations
|
|
Defold 1.8.0
|
|
|
|
Zlib compression API documentation
|
|
|
|
Functions for compression and decompression of string buffers.
|
|
--]]
|
|
|
|
---@diagnostic disable: lowercase-global
|
|
---@diagnostic disable: missing-return
|
|
---@diagnostic disable: duplicate-doc-param
|
|
---@diagnostic disable: duplicate-set-field
|
|
|
|
---@class defold_api.zlib
|
|
zlib = {}
|
|
|
|
---A lua error is raised is on error
|
|
---@param buf string buffer to deflate
|
|
---@return string buf deflated buffer
|
|
function zlib.deflate(buf) end
|
|
|
|
---A lua error is raised is on error
|
|
---@param buf string buffer to inflate
|
|
---@return string buf inflated buffer
|
|
function zlib.inflate(buf) end
|
|
|
|
return zlib |