#ifndef __LASSO_VERSION_H__ #define __LASSO_VERSION_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * LASSO_VERSION: * * The library version string in the format * "..". */ #define LASSO_VERSION "@LASSO_VERSION@" /** * LASSO_VERSION_MAJOR: * * The library major version number. */ #define LASSO_VERSION_MAJOR @LASSO_VERSION_MAJOR@ /** * LASSO_VERSION_MINOR: * * The library minor version number. */ #define LASSO_VERSION_MINOR @LASSO_VERSION_MINOR@ /** * LASSO_VERSION_SUBMINOR: * * The library sub-minor version number. */ #define LASSO_VERSION_SUBMINOR @LASSO_VERSION_SUBMINOR@ /** * LASSO_VERSION_INFO: * * The library version info string in the format * "+::". */ #define LASSO_VERSION_INFO "@LASSO_VERSION_INFO@" #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __LASSO_VERSION_H__ */