//---------------------------------------------------------------------------------------------------- // QB64-PE Compression Library // Powered by miniz (https://github.com/richgel999/miniz) //----------------------------------------------------------------------------------------------------- #pragma once #include struct qbs; qbs *func__deflate(qbs *text); qbs *func__inflate(qbs *text, int64_t originalsize, int32_t passed);