Thermal Camera SDK 10.0.1
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
Api.h
Go to the documentation of this file.
1// Copyright (c) 2025 Optris GmbH Co. KG
2
45
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
65 #define OTC_SDK_API
67 #define OTC_SDK_EXTERN
69 #define OTC_SDK_C_CALL
70#endif