xmlsecurityengine/xmlsec/inc/xmlsec_version.h
changeset 0 e35f40988205
equal deleted inserted replaced
-1:000000000000 0:e35f40988205
       
     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  * Portion Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 
       
    11  */
       
    12 #ifndef __XMLSEC_VERSION_H__
       
    13 #define __XMLSEC_VERSION_H__    
       
    14 
       
    15 #ifdef __cplusplus
       
    16 extern "C" {
       
    17 #endif /* __cplusplus */ 
       
    18 
       
    19 #include "xmlsec_config.h"
       
    20 
       
    21 /**
       
    22  * XMLSEC_VERSION:
       
    23  *
       
    24  * The library version string in the format
       
    25  * "<major-number>.<minor-number>.<sub-minor-number>".
       
    26  */
       
    27 #define XMLSEC_VERSION			"1.2.9"
       
    28 
       
    29 /**
       
    30  * XMLSEC_VERSION_MAJOR:
       
    31  *
       
    32  * The library major version number.
       
    33  */
       
    34 #define XMLSEC_VERSION_MAJOR		1
       
    35 
       
    36 /**
       
    37  * XMLSEC_VERSION_MINOR:
       
    38  *
       
    39  * The library minor version number.
       
    40  */
       
    41 #define XMLSEC_VERSION_MINOR		2
       
    42 
       
    43 /**
       
    44  * XMLSEC_VERSION_SUBMINOR:
       
    45  *
       
    46  * The library sub-minor version number.
       
    47  */
       
    48 #define XMLSEC_VERSION_SUBMINOR		9
       
    49 
       
    50 /**
       
    51  * XMLSEC_VERSION_INFO:
       
    52  *
       
    53  * The library version info string in the format
       
    54  * "<major-number>+<minor-number>:<sub-minor-number>:<minor-number>".
       
    55  */
       
    56 #define XMLSEC_VERSION_INFO		"3:9:2"
       
    57 
       
    58 
       
    59 #ifdef __cplusplus
       
    60 }
       
    61 #endif /* __cplusplus */
       
    62 
       
    63 #endif /* __XMLSEC_VERSION_H__ */
       
    64