Go to the documentation of this file. 7 #if defined _WIN32 || defined __CYGWIN__ 8 #define VOICE_SDK_API_IMPORT __declspec(dllimport) 9 #define VOICE_SDK_API_EXPORT __declspec(dllexport) 10 #elif __GNUC__ >= 4 || defined __clang__ && !defined(__CUDACC__) 11 #define VOICE_SDK_API_IMPORT __attribute__ ((visibility ("default"))) 12 #define VOICE_SDK_API_EXPORT __attribute__ ((visibility ("default"))) 14 #define VOICE_SDK_API_IMPORT 15 #define VOICE_SDK_API_EXPORT 18 #ifdef VOICE_SDK_EXPORT 19 #define VOICE_SDK_API VOICE_SDK_API_EXPORT 21 #define VOICE_SDK_API VOICE_SDK_API_IMPORT