PdCom  5.3
Process data communication client
Loading...
Searching...
No Matches
/home/abuild/rpmbuild/BUILD/python3-pdcom5-5.3.2.g3adc575-build/pdcom5-5.3.2.g3adc575/redhat-linux-build/pdcom5.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vim:tw=78
3 *
4 * Copyright (C) 2015-2016 Richard Hacker (lerichi at gmx dot net)
5 * Florian Pose <fp@igh.de>
6 *
7 * This file is part of the PdCom library.
8 *
9 * The PdCom library is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or (at your
12 * option) any later version.
13 *
14 * The PdCom library is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17 * License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with the PdCom library. If not, see <http://www.gnu.org/licenses/>.
21 *
22 *****************************************************************************/
23
25
26#ifndef PDCOM5_H
27#define PDCOM5_H
28
29#include "pdcom5_export.h"
30
32#define PDCOM_MAJOR 5
34#define PDCOM_MINOR 3
36#define PDCOM_RELEASE 2
37
39#define PDCOM_VERSION(A, B, C) (((A) << 16) + ((B) << 8) + (C))
40
42#define PDCOM_VERSION_CODE \
43 PDCOM_VERSION(PDCOM_MAJOR, PDCOM_MINOR, PDCOM_RELEASE)
44
45namespace PdCom {
47PDCOM5_PUBLIC extern const char* const pdcom_version_code;
55PDCOM5_PUBLIC extern const char* const pdcom_full_version;
56}
57
158
159#endif // PDCOM5_H
160
161/****************************************************************************/