int WINAPI Decompress(
char * pbOutBuffer,
int * pcbOutBuffer,
char * pbInBuffer,
int cbInBuffer
);
pbOutBuffer
[out] Pointer to buffer where the decompressed data will be stored.
pcbOutBuffer
[in, out] On call, pointer to the length of the buffer in pbOutBuffer. When finished, this variable receives length of the decompressed data.
pbInBuffer
[in] Pointer to data that are to be exploded.
cbInBuffer
[in] Length of the data pointed by pbInBuffer.
第一第三大概指的是写入和读取的缓存位置,第四个应该是读取缓存的大小,但第二个不太懂。 最好写一个例子