Loading...
Searching...
No Matches
1#ifndef DECONZ_DECLSPEC_H
2#define DECONZ_DECLSPEC_H
18#ifdef BUILD_ULIB_SHARED
19 #define DECONZ_DLLSPEC __declspec(dllexport)
21 #define DECONZ_DLLSPEC __declspec(dllimport)
26 #define DECONZ_DLLSPEC
36#define API_DEPRECATED __attribute__ ((deprecated))
37#elif defined(_MSC_VER)
38#define API_DEPRECATED __declspec(deprecated)