Loading...
Searching...
No Matches
6#if defined _WIN32 || defined __CYGWIN__
7 #define VL_SDK_DLL_IMPORT __declspec(dllimport)
8 #define VL_SDK_DLL_EXPORT __declspec(dllexport)
11 #define VL_SDK_DLL_IMPORT __attribute__ ((visibility ("default")))
12 #define VL_SDK_DLL_EXPORT __attribute__ ((visibility ("default")))
14 #define VL_SDK_DLL_IMPORT
15 #define VL_SDK_DLL_EXPORT
21 #define VL_SDK_API VL_SDK_DLL_EXPORT
24 #define VL_SDK_API VL_SDK_DLL_IMPORT
28 #define VL_CALLINGCONVENTION __stdcall
30 #define VL_CALLINGCONVENTION