Thermal Camera SDK 11.4.10
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
Api.h
Go to the documentation of this file.
1// Copyright (c) 2008-2026 Optris GmbH & Co. KG
2
46#pragma once
47
48// Symbol export to DLLs under Windows.
49#if defined(_WIN32) && !defined(OTC_SDK_STATIC)
51 #define OTC_SDK_C_CALL __cdecl
52 #ifdef OTC_SDK_DLL_EXPORT
54 #define OTC_SDK_API __declspec(dllexport)
56 #define OTC_SDK_EXTERN
57 #else
59 #define OTC_SDK_API __declspec(dllimport)
61 #define OTC_SDK_EXTERN extern
62 #endif
63#else
64 #ifdef OTC_SDK_DLL_EXPORT
65 #define OTC_SDK_API __attribute__((visibility("default")))
66 #else
67 #define OTC_SDK_API
68 #endif
69 #define OTC_SDK_EXTERN
70 #define OTC_SDK_C_CALL
71#endif