mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-18 04:10:57 +01:00
initial commit
This commit is contained in:
15
libpcp/version.h
Normal file
15
libpcp/version.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef _HAVE_PCP_VERSION
|
||||
#define _HAVE_PCP_VERSION
|
||||
|
||||
#define PCP_VERSION_MAJOR 0
|
||||
#define PCP_VERSION_MINOR 0
|
||||
#define PCP_VERSION_PATCH 1
|
||||
|
||||
#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();
|
||||
|
||||
#endif // _HAVE_PCP_VERSION
|
||||
Reference in New Issue
Block a user