You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
475 B
26 lines
475 B
/* CLN version information */
|
|
|
|
#ifndef _CL_VERSION_H
|
|
#define _CL_VERSION_H
|
|
|
|
/* CLN release number */
|
|
#undef CL_VERSION
|
|
|
|
/* Major version number of CLN */
|
|
#undef CL_VERSION_MAJOR
|
|
|
|
/* Minor version number of CLN */
|
|
#undef CL_VERSION_MINOR
|
|
|
|
/* Patchlevel version number of CLN */
|
|
#undef CL_VERSION_PATCHLEVEL
|
|
|
|
namespace cln {
|
|
|
|
extern const int version_major;
|
|
extern const int version_minor;
|
|
extern const int version_patchlevel;
|
|
|
|
} // namespace cln
|
|
|
|
#endif /* _CL_VERSION_H */
|