Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/lzma
File: version.h
/**
[0] Fix | Delete
* \file lzma/version.h
[1] Fix | Delete
* \brief Version number
[2] Fix | Delete
*/
[3] Fix | Delete
[4] Fix | Delete
/*
[5] Fix | Delete
* Author: Lasse Collin
[6] Fix | Delete
*
[7] Fix | Delete
* This file has been put into the public domain.
[8] Fix | Delete
* You can do whatever you want with this file.
[9] Fix | Delete
*
[10] Fix | Delete
* See ../lzma.h for information about liblzma as a whole.
[11] Fix | Delete
*/
[12] Fix | Delete
[13] Fix | Delete
#ifndef LZMA_H_INTERNAL
[14] Fix | Delete
# error Never include this file directly. Use <lzma.h> instead.
[15] Fix | Delete
#endif
[16] Fix | Delete
[17] Fix | Delete
[18] Fix | Delete
/*
[19] Fix | Delete
* Version number split into components
[20] Fix | Delete
*/
[21] Fix | Delete
#define LZMA_VERSION_MAJOR 5
[22] Fix | Delete
#define LZMA_VERSION_MINOR 2
[23] Fix | Delete
#define LZMA_VERSION_PATCH 4
[24] Fix | Delete
#define LZMA_VERSION_STABILITY LZMA_VERSION_STABILITY_STABLE
[25] Fix | Delete
[26] Fix | Delete
#ifndef LZMA_VERSION_COMMIT
[27] Fix | Delete
# define LZMA_VERSION_COMMIT ""
[28] Fix | Delete
#endif
[29] Fix | Delete
[30] Fix | Delete
[31] Fix | Delete
/*
[32] Fix | Delete
* Map symbolic stability levels to integers.
[33] Fix | Delete
*/
[34] Fix | Delete
#define LZMA_VERSION_STABILITY_ALPHA 0
[35] Fix | Delete
#define LZMA_VERSION_STABILITY_BETA 1
[36] Fix | Delete
#define LZMA_VERSION_STABILITY_STABLE 2
[37] Fix | Delete
[38] Fix | Delete
[39] Fix | Delete
/**
[40] Fix | Delete
* \brief Compile-time version number
[41] Fix | Delete
*
[42] Fix | Delete
* The version number is of format xyyyzzzs where
[43] Fix | Delete
* - x = major
[44] Fix | Delete
* - yyy = minor
[45] Fix | Delete
* - zzz = revision
[46] Fix | Delete
* - s indicates stability: 0 = alpha, 1 = beta, 2 = stable
[47] Fix | Delete
*
[48] Fix | Delete
* The same xyyyzzz triplet is never reused with different stability levels.
[49] Fix | Delete
* For example, if 5.1.0alpha has been released, there will never be 5.1.0beta
[50] Fix | Delete
* or 5.1.0 stable.
[51] Fix | Delete
*
[52] Fix | Delete
* \note The version number of liblzma has nothing to with
[53] Fix | Delete
* the version number of Igor Pavlov's LZMA SDK.
[54] Fix | Delete
*/
[55] Fix | Delete
#define LZMA_VERSION (LZMA_VERSION_MAJOR * UINT32_C(10000000) \
[56] Fix | Delete
+ LZMA_VERSION_MINOR * UINT32_C(10000) \
[57] Fix | Delete
+ LZMA_VERSION_PATCH * UINT32_C(10) \
[58] Fix | Delete
+ LZMA_VERSION_STABILITY)
[59] Fix | Delete
[60] Fix | Delete
[61] Fix | Delete
/*
[62] Fix | Delete
* Macros to construct the compile-time version string
[63] Fix | Delete
*/
[64] Fix | Delete
#if LZMA_VERSION_STABILITY == LZMA_VERSION_STABILITY_ALPHA
[65] Fix | Delete
# define LZMA_VERSION_STABILITY_STRING "alpha"
[66] Fix | Delete
#elif LZMA_VERSION_STABILITY == LZMA_VERSION_STABILITY_BETA
[67] Fix | Delete
# define LZMA_VERSION_STABILITY_STRING "beta"
[68] Fix | Delete
#elif LZMA_VERSION_STABILITY == LZMA_VERSION_STABILITY_STABLE
[69] Fix | Delete
# define LZMA_VERSION_STABILITY_STRING ""
[70] Fix | Delete
#else
[71] Fix | Delete
# error Incorrect LZMA_VERSION_STABILITY
[72] Fix | Delete
#endif
[73] Fix | Delete
[74] Fix | Delete
#define LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit) \
[75] Fix | Delete
#major "." #minor "." #patch stability commit
[76] Fix | Delete
[77] Fix | Delete
#define LZMA_VERSION_STRING_C(major, minor, patch, stability, commit) \
[78] Fix | Delete
LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit)
[79] Fix | Delete
[80] Fix | Delete
[81] Fix | Delete
/**
[82] Fix | Delete
* \brief Compile-time version as a string
[83] Fix | Delete
*
[84] Fix | Delete
* This can be for example "4.999.5alpha", "4.999.8beta", or "5.0.0" (stable
[85] Fix | Delete
* versions don't have any "stable" suffix). In future, a snapshot built
[86] Fix | Delete
* from source code repository may include an additional suffix, for example
[87] Fix | Delete
* "4.999.8beta-21-g1d92". The commit ID won't be available in numeric form
[88] Fix | Delete
* in LZMA_VERSION macro.
[89] Fix | Delete
*/
[90] Fix | Delete
#define LZMA_VERSION_STRING LZMA_VERSION_STRING_C( \
[91] Fix | Delete
LZMA_VERSION_MAJOR, LZMA_VERSION_MINOR, \
[92] Fix | Delete
LZMA_VERSION_PATCH, LZMA_VERSION_STABILITY_STRING, \
[93] Fix | Delete
LZMA_VERSION_COMMIT)
[94] Fix | Delete
[95] Fix | Delete
[96] Fix | Delete
/* #ifndef is needed for use with windres (MinGW or Cygwin). */
[97] Fix | Delete
#ifndef LZMA_H_INTERNAL_RC
[98] Fix | Delete
[99] Fix | Delete
/**
[100] Fix | Delete
* \brief Run-time version number as an integer
[101] Fix | Delete
*
[102] Fix | Delete
* Return the value of LZMA_VERSION macro at the compile time of liblzma.
[103] Fix | Delete
* This allows the application to compare if it was built against the same,
[104] Fix | Delete
* older, or newer version of liblzma that is currently running.
[105] Fix | Delete
*/
[106] Fix | Delete
extern LZMA_API(uint32_t) lzma_version_number(void)
[107] Fix | Delete
lzma_nothrow lzma_attr_const;
[108] Fix | Delete
[109] Fix | Delete
[110] Fix | Delete
/**
[111] Fix | Delete
* \brief Run-time version as a string
[112] Fix | Delete
*
[113] Fix | Delete
* This function may be useful if you want to display which version of
[114] Fix | Delete
* liblzma your application is currently using.
[115] Fix | Delete
*/
[116] Fix | Delete
extern LZMA_API(const char *) lzma_version_string(void)
[117] Fix | Delete
lzma_nothrow lzma_attr_const;
[118] Fix | Delete
[119] Fix | Delete
#endif
[120] Fix | Delete
[121] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function