DI-Guy SDK Documentation  13.1
declspec_db_sim.h
Go to the documentation of this file.
1 
2 /*********************************************************************
3  ** Copyright (c) 1992-2015 VT MAK
4  ** All rights reserved.
5  *********************************************************************/
6 
7 #ifndef __declspec_db_sim_H
8 #define __declspec_db_sim_H
9 
10 #ifdef _WIN32
11 # ifdef BDI_DLL
12 # ifdef BDI_DLL_EXPORT_db_sim
13 # define BDI_DECLSPEC_db_sim __declspec(dllexport)
14 # pragma message("BDI_DECLSPEC_db_sim explicitly set to dllexport")
15 # else
16 # define BDI_DECLSPEC_db_sim __declspec(dllimport)
17 # pragma message("BDI_DECLSPEC_db_sim implicitly set to dllimport")
18 # endif
19 # endif
20 #endif
21 
22 #ifndef BDI_DECLSPEC_db_sim
23 # define BDI_DECLSPEC_db_sim
24 #endif
25 
26 #endif /* __declspec_db_sim_H */
27 
28 
29 /*********************************************************************
30  ** Copyright (c) 1992-2015 VT MAK
31  ** All rights reserved.
32  *********************************************************************/
33