xref: /haiku/src/libs/libsolv/solv/solvversion.h (revision caed67a8cba83913b9c21ac2b06ebc6bd1cb3111)
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7 
8 /*
9  * solvversion.h
10  *
11  */
12 
13 #ifndef LIBSOLV_SOLVVERSION_H
14 #define LIBSOLV_SOLVVERSION_H
15 
16 #define LIBSOLV_VERSION_STRING "0.3.0"
17 #define LIBSOLV_VERSION_MAJOR 0
18 #define LIBSOLV_VERSION_MINOR 3
19 #define LIBSOLV_VERSION_PATCH 0
20 #define LIBSOLV_VERSION (LIBSOLV_VERSION_MAJOR * 10000 + LIBSOLV_VERSION_MINOR * 100 + LIBSOLV_VERSION_PATCH)
21 
22 extern const char solv_version[];
23 extern int solv_version_major;
24 extern int solv_version_minor;
25 extern int solv_version_patch;
26 
27 #endif
28