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

  1. /* CLN version information */
  2. #ifndef _CL_VERSION_H
  3. #define _CL_VERSION_H
  4. /* CLN release number */
  5. #undef CL_VERSION
  6. /* Major version number of CLN */
  7. #undef CL_VERSION_MAJOR
  8. /* Minor version number of CLN */
  9. #undef CL_VERSION_MINOR
  10. /* Patchlevel version number of CLN */
  11. #undef CL_VERSION_PATCHLEVEL
  12. namespace cln {
  13. extern const int version_major;
  14. extern const int version_minor;
  15. extern const int version_patchlevel;
  16. } // namespace cln
  17. #endif /* _CL_VERSION_H */