Go to the documentation of this file.
53#define CP_VERSION "0.2.0"
59#define CP_VERSION_MAJOR 0
65#define CP_VERSION_MINOR 2
138# define CP_EXPORT __declspec(dllexport)
139# define CP_IMPORT extern __declspec(dllimport)
141#elif defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
143# define CP_IMPORT extern
144# define CP_HIDDEN __attribute__ ((visibility ("hidden")))
147# define CP_IMPORT extern
187#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
188#define CP_GCC_PURE __attribute__((pure))
192#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)
193#define CP_GCC_NONNULL(...) __attribute__((nonnull (__VA_ARGS__)))
195#define CP_GCC_NONNULL(...)
Generated on Sun Mar 31 2024 17:56:45 for C-Pluff C API by
1.9.8