Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/liblzma/api/lzma/version.h

Issue 7109015: Update XZ Utils to 5.0.3 (in deps) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/liblzma/api/lzma/stream_flags.h ('k') | src/liblzma/api/lzma/vli.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 4 23 #define LZMA_VERSION_MAJOR 5
24 #define LZMA_VERSION_MINOR 999 24 #define LZMA_VERSION_MINOR 0
25 #define LZMA_VERSION_PATCH 9 25 #define LZMA_VERSION_PATCH 3
26 #define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_BETA 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 */
36 #define LZMA_VERSION_STABILITY_ALPHA 0 36 #define LZMA_VERSION_STABILITY_ALPHA 0
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « src/liblzma/api/lzma/stream_flags.h ('k') | src/liblzma/api/lzma/vli.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698