libstorage-ng
Loading...
Searching...
No Matches
Version.h
1/*
2 * Copyright (c) 2011 Novell, Inc.
3 * Copyright (c) 2016 SUSE LLC
4 *
5 * All Rights Reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as published
9 * by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, contact Novell, Inc.
18 *
19 * To contact Novell about this file by physical or electronic mail, you may
20 * find current contact information at www.novell.com.
21 */
22
23
24#ifndef STORAGE_VERSION_H
25#define STORAGE_VERSION_H
26
27
28#define LIBSTORAGE_NG_VERSION_STRING "1.83.0"
29
30#define LIBSTORAGE_NG_VERSION_MAJOR 1
31#define LIBSTORAGE_NG_VERSION_MINOR 83
32#define LIBSTORAGE_NG_VERSION_PATCHLEVEL 0
33
34#define LIBSTORAGE_NG_VERSION_AT_LEAST(major, minor) \
35 ((LIBSTORAGE_NG_VERSION_MAJOR > (major)) || \
36 (LIBSTORAGE_NG_VERSION_MAJOR == (major) && LIBSTORAGE_NG_VERSION_MINOR >= (minor)))
37
38
39#endif