NVIDIA DeepStream SDK API Reference

6.4 Release
Core.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
3  *
4  * NVIDIA CORPORATION and its licensors retain all intellectual property
5  * and proprietary rights in and to this software, related documentation
6  * and any modifications thereto. Any use, reproduction, disclosure or
7  * distribution of this software and related documentation without an express
8  * license agreement from NVIDIA CORPORATION is strictly prohibited.
9  */
10 
11 #ifndef CORE_H
12 #define CORE_H
13 
14 namespace cvcore {
15 
16 // Enable dll imports/exports in case of windows support
17 #ifdef _WIN32
18 #ifdef CVCORE_EXPORT_SYMBOLS // Needs to be enabled in case of compiling dll
19 #define CVCORE_API __declspec(dllexport) // Exports symbols when compiling the library.
20 #else
21 #define CVCORE_API __declspec(dllimport) // Imports the symbols when linked with library.
22 #endif
23 #else
24 #define CVCORE_API
25 #endif
26 
27 } // namespace cvcore
28 #endif // CORE_H
cvcore
Definition: PnP.h:20