2013-11-07 08:10:31 +01:00
|
|
|
/*
|
|
|
|
|
This file is part of Pretty Curved Privacy (pcp1).
|
|
|
|
|
|
2014-02-27 13:55:43 +01:00
|
|
|
Copyright (C) 2013-2014 T.v.Dein.
|
2013-11-07 08:10:31 +01:00
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2014-02-27 13:55:43 +01:00
|
|
|
You can contact me by mail: <tom AT vondein DOT org>.
|
2013-11-07 08:10:31 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _HAVE_PCP_VERSION
|
|
|
|
|
#define _HAVE_PCP_VERSION
|
|
|
|
|
|
|
|
|
|
#define PCP_VERSION_MAJOR 0
|
2014-01-22 23:29:28 +01:00
|
|
|
#define PCP_VERSION_MINOR 2
|
2014-08-11 15:45:47 +02:00
|
|
|
#define PCP_VERSION_PATCH 3
|
2013-11-07 08:10:31 +01:00
|
|
|
|
|
|
|
|
#define PCP_MAKE_VERSION(major, minor, patch) \
|
|
|
|
|
((major) * 10000 + (minor) * 100 + (patch))
|
|
|
|
|
#define PCP_VERSION \
|
|
|
|
|
PCP_MAKE_VERSION(PCP_VERSION_MAJOR, PCP_VERSION_MINOR, PCP_VERSION_PATCH)
|
|
|
|
|
|
|
|
|
|
int pcp_version();
|
|
|
|
|
|
2014-02-05 20:41:16 +01:00
|
|
|
#endif /* _HAVE_PCP_VERSION */
|