/
githubmirror
/
xmlsec
Обзор
Документация
Войти
/
githubmirror
/
xmlsec
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.3.6
include/xmlsec/version.h.in
65 строк
1 KB
lsh123
Update copyright (#817)
12 июл 2024, 17:09
Не верифицирован
12 июл 2024, 17:09
c1f4524
Код
Авторство
О чём код?
/* * XML Security Library (http://www.aleksey.com/xmlsec). * * * This is free software; see Copyright file in the source * distribution for preciese wording. * * Copyright (C) 2002-2024 Aleksey Sanin <aleksey@aleksey.com>. All Rights Reserved. */ /** * SECTION:version * @Short_description: Version macros. * @Stability: Stable * */ #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__ */