/
githubmirror
/
xmlsec
Обзор
Документация
Войти
/
githubmirror
/
xmlsec
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
include/xmlsec/version.h.in
45 строк
1 KB
lsh123
Update file headers for doxygen, use common copyright header, bump copyright to 2026 (#1122)
07 апр 2026, 04:13
Не верифицирован
07 апр 2026, 04:13
2e557ee
Код
Авторство
О чём код?
/** * XML Security Library (http://www.aleksey.com/xmlsec). * * This is free software; see the Copyright file in the source distribution for precise wording. * * Copyright (C) 2002-2026 Aleksey Sanin <aleksey@aleksey.com>. All Rights Reserved. */ #ifndef __XMLSEC_VERSION_H__ #define __XMLSEC_VERSION_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * @brief The library version string in the format "$major_number.$minor_number.$sub_minor_number". */ #define XMLSEC_VERSION "@XMLSEC_VERSION@" /** * @brief The library major version number. */ #define XMLSEC_VERSION_MAJOR @XMLSEC_VERSION_MAJOR@ /** * @brief The library minor version number. */ #define XMLSEC_VERSION_MINOR @XMLSEC_VERSION_MINOR@ /** * @brief The library sub-minor version number. */ #define XMLSEC_VERSION_SUBMINOR @XMLSEC_VERSION_SUBMINOR@ /** * @brief 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__ */