New streaming API behavior, to solve issue 19 (https://github.com/Cyan4973/zstd/issues/19)

This commit is contained in:
Yann Collet
2015-02-16 18:06:26 +01:00
parent f66d2babf8
commit c5d46b5c90
4 changed files with 61 additions and 54 deletions
+2 -2
View File
@@ -57,7 +57,7 @@ typedef void* ZSTD_dctx_t;
ZSTD_dctx_t ZSTD_createDCtx(void);
size_t ZSTD_freeDCtx(ZSTD_dctx_t dctx);
size_t ZSTD_getNextcBlockSize(ZSTD_dctx_t dctx);
size_t ZSTD_nextSrcSizeToDecompress(ZSTD_dctx_t dctx);
size_t ZSTD_decompressContinue(ZSTD_dctx_t dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize);
@@ -77,4 +77,4 @@ typedef enum { ZSTD_LIST_ERRORS(ZSTD_GENERATE_ENUM) } ZSTD_errorCodes; /* expo
#if defined (__cplusplus)
}
#endif
#endif