compress.h

来自「具有数据压缩和解压缩功能的地动态库。 采用Delphi内置的压缩库实现。压缩效」· C头文件 代码 · 共 17 行

H
17
字号
#ifndef __COMPRESS__H__
#define __COMPRESS__H__

//**************************************************************************************
// please assure that Compress.dll is in present or system directory
//**************************************************************************************


//**************************************************************************************
// please use the next two functions to do your things
//**************************************************************************************

int CompressBuffer(char * InS, int InL, char * OutS, int * OutL);
int DecompressBuffer(char * InS, int InL, char * OutS, int * OutL);


#endif // __COMPRESS__H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?