diff options
| author | Ferenc Arn | 2017-10-26 16:41:47 -0400 |
|---|---|---|
| committer | Ferenc Arn | 2017-10-26 16:41:47 -0400 |
| commit | 01815e9b5f1ec97d0018ee843a07fa73f450f1bf (patch) | |
| tree | e810d42b26e885a6374a657f1b1092521dfc0a94 /thirdparty/zstd/common/zstd_errors.h | |
| parent | 2987e6ce4ffc69da5efc0903cc00ce12e72d2125 (diff) | |
| download | godot-01815e9b5f1ec97d0018ee843a07fa73f450f1bf.tar.gz godot-01815e9b5f1ec97d0018ee843a07fa73f450f1bf.tar.zst godot-01815e9b5f1ec97d0018ee843a07fa73f450f1bf.zip | |
Diffstat (limited to 'thirdparty/zstd/common/zstd_errors.h')
| -rw-r--r-- | thirdparty/zstd/common/zstd_errors.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/thirdparty/zstd/common/zstd_errors.h b/thirdparty/zstd/common/zstd_errors.h index a69387b71..4bcb7769f 100644 --- a/thirdparty/zstd/common/zstd_errors.h +++ b/thirdparty/zstd/common/zstd_errors.h @@ -5,6 +5,7 @@ * This source code is licensed under both the BSD-style license (found in the * LICENSE file in the root directory of this source tree) and the GPLv2 (found * in the COPYING file in the root directory of this source tree). + * You may select, at your option, one of the above-listed licenses. */ #ifndef ZSTD_ERRORS_H_398273423 @@ -62,9 +63,10 @@ typedef enum { ZSTD_error_memory_allocation = 64, ZSTD_error_dstSize_tooSmall = 70, ZSTD_error_srcSize_wrong = 72, + /* following error codes are not stable and may be removed or changed in a future version */ ZSTD_error_frameIndex_tooLarge = 100, ZSTD_error_seekableIO = 102, - ZSTD_error_maxCode = 120 /* never EVER use this value directly, it may change in future versions! Use ZSTD_isError() instead */ + ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */ } ZSTD_ErrorCode; /*! ZSTD_getErrorCode() : |
