Loading...
Searching...
No Matches
Go to the documentation of this file.
10# define TSID_VERSION_UNKNOWN_TAG 0
11# define TSID_VERSION "1.6.3"
12# define TSID_MAJOR_VERSION 1
13# define TSID_MINOR_VERSION 6
14# define TSID_PATCH_VERSION 3
16#define TSID_VERSION_AT_LEAST(major, minor, patch) (TSID_MAJOR_VERSION>major || (TSID_MAJOR_VERSION>=major && \
17 (TSID_MINOR_VERSION>minor || (TSID_MINOR_VERSION>=minor && \
18 TSID_PATCH_VERSION>=patch))))
20#define TSID_VERSION_AT_MOST(major, minor, patch) (TSID_MAJOR_VERSION<major || (TSID_MAJOR_VERSION<=major && \
21 (TSID_MINOR_VERSION<minor || (TSID_MINOR_VERSION<=minor && \
22 TSID_PATCH_VERSION<=patch))))
34# if defined _WIN32 || defined __CYGWIN__
36# define TSID_DLLIMPORT __declspec(dllimport)
37# define TSID_DLLEXPORT __declspec(dllexport)
42# define TSID_DLLIMPORT __attribute__ ((visibility("default")))
43# define TSID_DLLEXPORT __attribute__ ((visibility("default")))
44# define TSID_DLLLOCAL __attribute__ ((visibility("hidden")))
47# define TSID_DLLIMPORT
48# define TSID_DLLEXPORT
62# define TSID_DLLAPI TSID_DLLEXPORT
64# define TSID_DLLAPI TSID_DLLIMPORT
66# define TSID_LOCAL TSID_DLLLOCAL