SBSDK 3.3.5
Polyga’s SB SDK is a set of programmable API’s that allow users to directly communicate and control any of Polyga’s 3D scanners using C++, C# or Command line.
SBSDK_API.h
Go to the documentation of this file.
1
7#pragma once
8
9#if __linux__
10 #define SBSDK_API
11#else
12 #ifdef SBSDK_EXPORTS
13 #define SBSDK_API __declspec(dllexport)
14 #else
15 #define SBSDK_API __declspec(dllimport)
16 #endif
17#endif