RTI Connext DDS Micro  Version 2.4.6
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
rt_dll.h
Go to the documentation of this file.
1 /*
2  * FILE: rt_dll.h - DB external linkage
3  *
4  * Copyright 2012-2015 Real-Time Innovations, Inc.
5  *
6  * No duplications, whole or partial, manual or electronic, may be made
7  * without express written permission. Any such copies, or
8  * revisions thereof, must display this notice unaltered.
9  * This code contains trade secrets of Real-Time Innovations, Inc.
10  *
11  * Modification History
12  * --------------------
13  * 04jan2012,tk Written
14  */
15 /*ce
16  * \file
17  */
18 #ifndef rt_dll_h
19 #define rt_dll_h
20 
21 
22 #if defined(RTI_WIN32) || defined(RTI_WINCE30)
23 
24 #if defined(RTIME_DLL_EXPORT)
25 
26 #ifndef RTI_rt_DLL_EXPORT
27 #define RTI_rt_DLL_EXPORT
28 #endif
29 #ifndef RTI_rt_DLL_VARIABLE
30 #define RTI_rt_DLL_VARIABLE
31 #endif
32 
33 #endif
34 
35 #if defined(RTI_rt_DLL_EXPORT)
36 #define RTDllExport __declspec( dllexport )
37 #else
38 #define RTDllExport
39 #endif /* RTI_rt_DLL_EXPORT */
40 
41 #if defined(RTI_rt_DLL_VARIABLE)
42 #if defined(RTI_rt_DLL_EXPORT)
43 #define RTDllVariable __declspec( dllexport )
44 #else
45 #define RTDllVariable __declspec( dllimport )
46 #endif /* RTI_rt_DLL_EXPORT */
47 #else
48 #define RTDllVariable
49 #endif /* RTI_rt_DLL_VARIABLE */
50 #else
51 #define RTDllExport
52 #define RTDllVariable
53 #endif /* RTI_WIN32 || RTI_WINCE30 */
54 
55 #if defined(__cplusplus) && defined(RTI_USE_CPP_API)
56 #define RTI_CPP
57 #else
58 #define DDSCPPDllExport
59 #endif
60 
61 #endif /* rt_dll_h */

RTI Connext DDS Micro Version 2.4.6 Copyright © Sun Jan 24 2016 Real-Time Innovations, Inc