#ifndef __XXX_H_INCLUDED__
#define __XXX_H_INCLUDED__
#define XXX_VERSION_MAJOR 4
#define XXX_VERSION_MINOR 0
#define XXX_VERSION_PATCH 8
#define XXX_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
#define XXX_VERSION \
XXX_MAKE_VERSION(XXX_VERSION_MAJOR, XXX_VERSION_MINOR, XXX_VERSION_PATCH)
#ifdef __cplusplus
extern "C" {
#endif
#if defined _WIN32
# if defined XXX_STATIC
# define XXX_EXPORT
# elif defined DLL_EXPORT
# define XXX_EXPORT __declspec(dllexport)
# else
# define XXX_EXPORT __declspec(dllimport)
# endif
#else
# if defined __SUNPRO_C || defined __SUNPRO_CC
# define XXX_EXPORT __global
# elif (defined __GNUC__ && __GNUC__ >= 4) || defined __INTEL_COMPILER
# define XXX_EXPORT __attribute__ ((visibility("default")))
# else
# define XXX_EXPORT
# endif
#endif
XXX_EXPORT void xxx_version (int *major, int *minor, int *patch);
#undef XXX_EXPORT
#ifdef __cplusplus
}
#endif
#endif