Git init
[external/xmlsec1.git] / include / xmlsec / version.h
1 /** 
2  * XML Security Library (http://www.aleksey.com/xmlsec).
3  *
4  * Version information
5  *
6  * This is free software; see Copyright file in the source
7  * distribution for preciese wording.
8  * 
9  * Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com>
10  */
11 #ifndef __XMLSEC_VERSION_H__
12 #define __XMLSEC_VERSION_H__    
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif /* __cplusplus */ 
17
18 /**
19  * XMLSEC_VERSION:
20  *
21  * The library version string in the format
22  * "<major-number>.<minor-number>.<sub-minor-number>".
23  */
24 #define XMLSEC_VERSION                  "1.2.14"
25
26 /**
27  * XMLSEC_VERSION_MAJOR:
28  *
29  * The library major version number.
30  */
31 #define XMLSEC_VERSION_MAJOR            1
32
33 /**
34  * XMLSEC_VERSION_MINOR:
35  *
36  * The library minor version number.
37  */
38 #define XMLSEC_VERSION_MINOR            2
39
40 /**
41  * XMLSEC_VERSION_SUBMINOR:
42  *
43  * The library sub-minor version number.
44  */
45 #define XMLSEC_VERSION_SUBMINOR         14
46
47 /**
48  * XMLSEC_VERSION_INFO:
49  *
50  * The library version info string in the format
51  * "<major-number>+<minor-number>:<sub-minor-number>:<minor-number>".
52  */
53 #define XMLSEC_VERSION_INFO             "3:14:2"
54
55
56 #ifdef __cplusplus
57 }
58 #endif /* __cplusplus */
59
60 #endif /* __XMLSEC_VERSION_H__ */
61