/
githubmirror
/
libxmlb
Обзор
Документация
Войти
/
githubmirror
/
libxmlb
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.3.19
src/xb-version.c
25 строк
460 B
Richard Hughes
Add xb_version_string() to get the runtime ABI version
11 апр 2024, 23:07
11 апр 2024, 23:07
f14c71a
Код
Авторство
О чём код?
/* * Copyright (C) 2024 Richard Hughes <richard@hughsie.com> * * SPDX-License-Identifier: LGPL-2.1+ */ #include "config.h" #include "xb-version.h" /** * xb_version_string: * * Gets the XMLb installed runtime version. * * Returns: a version number, e.g. "0.3.19" * * Since: 0.3.19 **/ const gchar * xb_version_string(void) { return G_STRINGIFY(XMLB_MAJOR_VERSION) "." G_STRINGIFY(XMLB_MINOR_VERSION) "." G_STRINGIFY( XMLB_MICRO_VERSION); }