| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file lzma/version.h | 2 * \file lzma/version.h |
| 3 * \brief Version number | 3 * \brief Version number |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 /* | 6 /* |
| 7 * Author: Lasse Collin | 7 * Author: Lasse Collin |
| 8 * | 8 * |
| 9 * This file has been put into the public domain. | 9 * This file has been put into the public domain. |
| 10 * You can do whatever you want with this file. | 10 * You can do whatever you want with this file. |
| 11 * | 11 * |
| 12 * See ../lzma.h for information about liblzma as a whole. | 12 * See ../lzma.h for information about liblzma as a whole. |
| 13 */ | 13 */ |
| 14 | 14 |
| 15 #ifndef LZMA_H_INTERNAL | 15 #ifndef LZMA_H_INTERNAL |
| 16 # error Never include this file directly. Use <lzma.h> instead. | 16 # error Never include this file directly. Use <lzma.h> instead. |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 | 19 |
| 20 /* | 20 /* |
| 21 * Version number split into components | 21 * Version number split into components |
| 22 */ | 22 */ |
| 23 #define LZMA_VERSION_MAJOR 5 | 23 #define LZMA_VERSION_MAJOR 5 |
| 24 #define LZMA_VERSION_MINOR 0 | 24 #define LZMA_VERSION_MINOR 0 |
| 25 #define LZMA_VERSION_PATCH 4 | 25 #define LZMA_VERSION_PATCH 5 |
| 26 #define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_STABLE | 26 #define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_STABLE |
| 27 | 27 |
| 28 #ifndef LZMA_VERSION_COMMIT | 28 #ifndef LZMA_VERSION_COMMIT |
| 29 # define LZMA_VERSION_COMMIT "" | 29 # define LZMA_VERSION_COMMIT "" |
| 30 #endif | 30 #endif |
| 31 | 31 |
| 32 | 32 |
| 33 /* | 33 /* |
| 34 * Map symbolic stability levels to integers. | 34 * Map symbolic stability levels to integers. |
| 35 */ | 35 */ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 /** | 112 /** |
| 113 * \brief Run-time version as a string | 113 * \brief Run-time version as a string |
| 114 * | 114 * |
| 115 * This function may be useful if you want to display which version of | 115 * This function may be useful if you want to display which version of |
| 116 * liblzma your application is currently using. | 116 * liblzma your application is currently using. |
| 117 */ | 117 */ |
| 118 extern LZMA_API(const char *) lzma_version_string(void) | 118 extern LZMA_API(const char *) lzma_version_string(void) |
| 119 lzma_nothrow lzma_attr_const; | 119 lzma_nothrow lzma_attr_const; |
| 120 | 120 |
| 121 #endif | 121 #endif |
| OLD | NEW |