diff options
author | Carsten Haitzler <raster@rasterman.com> | 2012-05-15 12:31:47 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2012-05-15 12:31:47 +0000 |
commit | 58e4c91e8d8ad720c925c3cfe8db289c529b9af6 (patch) | |
tree | 7068efa4415798915e7b410f7a6c2404d9ef6a35 /legacy/eet | |
parent | efca59d04f034b6429717170585d17697d7cdb4b (diff) |
add @since's
SVN revision: 71113
Diffstat (limited to 'legacy/eet')
-rw-r--r-- | legacy/eet/src/lib/Eet.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/legacy/eet/src/lib/Eet.h b/legacy/eet/src/lib/Eet.h index c525a9b078..0e1fea2929 100644 --- a/legacy/eet/src/lib/Eet.h +++ b/legacy/eet/src/lib/Eet.h | |||
@@ -274,20 +274,20 @@ typedef enum _Eet_Error | |||
274 | 274 | ||
275 | typedef enum _Eet_Compression | 275 | typedef enum _Eet_Compression |
276 | { | 276 | { |
277 | EET_COMPRESSION_NONE = 0, /**< No compression at all */ | 277 | EET_COMPRESSION_NONE = 0, /**< No compression at all @since 1.7 */ |
278 | EET_COMPRESSION_DEFAULT = 1, /**< Default compression (Zlib) */ | 278 | EET_COMPRESSION_DEFAULT = 1, /**< Default compression (Zlib) @since 1.7 */ |
279 | EET_COMPRESSION_LOW = 2, /**< Fast but minimal compression (Zlib) */ | 279 | EET_COMPRESSION_LOW = 2, /**< Fast but minimal compression (Zlib) @since 1.7 */ |
280 | EET_COMPRESSION_MED = 6, /**< Medium compression level (Zlib) */ | 280 | EET_COMPRESSION_MED = 6, /**< Medium compression level (Zlib) @since 1.7 */ |
281 | EET_COMPRESSION_HI = 9, /**< Slow but high compression level (Zlib) */ | 281 | EET_COMPRESSION_HI = 9, /**< Slow but high compression level (Zlib) @since 1.7 */ |
282 | EET_COMPRESSION_VERYFAST = 10, /**< Very fast, but lower compression ratio (LZ4HC) */ | 282 | EET_COMPRESSION_VERYFAST = 10, /**< Very fast, but lower compression ratio (LZ4HC) @since 1.7 */ |
283 | EET_COMPRESSION_SUPERFAST = 11, /**< Very fast, but lower compression ratio (faster to compress than EET_COMPRESSION_VERYFAST) (LZ4) */ | 283 | EET_COMPRESSION_SUPERFAST = 11, /**< Very fast, but lower compression ratio (faster to compress than EET_COMPRESSION_VERYFAST) (LZ4) @since 1.7 */ |
284 | 284 | ||
285 | EET_COMPRESSION_LOW2 = 3, /**< Space filler for compatibility. Don't use it */ | 285 | EET_COMPRESSION_LOW2 = 3, /**< Space filler for compatibility. Don't use it @since 1.7 */ |
286 | EET_COMPRESSION_MED1 = 4, /**< Space filler for compatibility. Don't use it */ | 286 | EET_COMPRESSION_MED1 = 4, /**< Space filler for compatibility. Don't use it @since 1.7 */ |
287 | EET_COMPRESSION_MED2 = 5, /**< Space filler for compatibility. Don't use it */ | 287 | EET_COMPRESSION_MED2 = 5, /**< Space filler for compatibility. Don't use it @since 1.7 */ |
288 | EET_COMPRESSION_HI1 = 7, /**< Space filler for compatibility. Don't use it */ | 288 | EET_COMPRESSION_HI1 = 7, /**< Space filler for compatibility. Don't use it @since 1.7 */ |
289 | EET_COMPRESSION_HI2 = 8 /**< Space filler for compatibility. Don't use it */ | 289 | EET_COMPRESSION_HI2 = 8 /**< Space filler for compatibility. Don't use it @since 1.7 */ |
290 | } Eet_Compression; /**< Eet compression modes */ | 290 | } Eet_Compression; /**< Eet compression modes @since 1.7 */ |
291 | 291 | ||
292 | /** | 292 | /** |
293 | * @} | 293 | * @} |