diff options
Diffstat (limited to 'include/xmlsec/version.h.in')
-rw-r--r-- | include/xmlsec/version.h.in | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/include/xmlsec/version.h.in b/include/xmlsec/version.h.in new file mode 100644 index 00000000..16bbafa0 --- /dev/null +++ b/include/xmlsec/version.h.in @@ -0,0 +1,61 @@ +/** + * XML Security Library (http://www.aleksey.com/xmlsec). + * + * Version information + * + * This is free software; see Copyright file in the source + * distribution for preciese wording. + * + * Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com> + */ +#ifndef __XMLSEC_VERSION_H__ +#define __XMLSEC_VERSION_H__ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/** + * XMLSEC_VERSION: + * + * The library version string in the format + * "<major-number>.<minor-number>.<sub-minor-number>". + */ +#define XMLSEC_VERSION "@XMLSEC_VERSION@" + +/** + * XMLSEC_VERSION_MAJOR: + * + * The library major version number. + */ +#define XMLSEC_VERSION_MAJOR @XMLSEC_VERSION_MAJOR@ + +/** + * XMLSEC_VERSION_MINOR: + * + * The library minor version number. + */ +#define XMLSEC_VERSION_MINOR @XMLSEC_VERSION_MINOR@ + +/** + * XMLSEC_VERSION_SUBMINOR: + * + * The library sub-minor version number. + */ +#define XMLSEC_VERSION_SUBMINOR @XMLSEC_VERSION_SUBMINOR@ + +/** + * XMLSEC_VERSION_INFO: + * + * The library version info string in the format + * "<major-number>+<minor-number>:<sub-minor-number>:<minor-number>". + */ +#define XMLSEC_VERSION_INFO "@XMLSEC_VERSION_INFO@" + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __XMLSEC_VERSION_H__ */ + |