diff -r 000000000000 -r e35f40988205 xmlsecurityengine/xmlsec/inc/xmlsec_version.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xmlsecurityengine/xmlsec/inc/xmlsec_version.h Thu Dec 17 09:29:21 2009 +0200 @@ -0,0 +1,64 @@ +/** + * 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 + * Portion Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. + */ +#ifndef __XMLSEC_VERSION_H__ +#define __XMLSEC_VERSION_H__ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#include "xmlsec_config.h" + +/** + * XMLSEC_VERSION: + * + * The library version string in the format + * "..". + */ +#define XMLSEC_VERSION "1.2.9" + +/** + * XMLSEC_VERSION_MAJOR: + * + * The library major version number. + */ +#define XMLSEC_VERSION_MAJOR 1 + +/** + * XMLSEC_VERSION_MINOR: + * + * The library minor version number. + */ +#define XMLSEC_VERSION_MINOR 2 + +/** + * XMLSEC_VERSION_SUBMINOR: + * + * The library sub-minor version number. + */ +#define XMLSEC_VERSION_SUBMINOR 9 + +/** + * XMLSEC_VERSION_INFO: + * + * The library version info string in the format + * "+::". + */ +#define XMLSEC_VERSION_INFO "3:9:2" + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __XMLSEC_VERSION_H__ */ +