DI-Guy SDK Documentation  13.1
declspec_bdiutil.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_bdiutil_H
8 #define __declspec_bdiutil_H
9 
10 #ifdef _WIN32
11 # ifdef BDI_DLL
12 # ifdef BDI_DLL_EXPORT_bdiutil
13 # define BDI_DECLSPEC_bdiutil __declspec(dllexport)
14 # if BDI_PRINT_DECLSPEC_MESSAGES
15 # pragma message("BDI_DECLSPEC_bdiutil explicitly set to dllexport")
16 # endif
17 # else
18 # define BDI_DECLSPEC_bdiutil __declspec(dllimport)
19 # if BDI_PRINT_DECLSPEC_MESSAGES
20 # pragma message("BDI_DECLSPEC_bdiutil implicitly set to dllimport")
21 # endif
22 # endif
23 # endif
24 #endif
25 
26 #ifndef BDI_DECLSPEC_bdiutil
27 # define BDI_DECLSPEC_bdiutil
28 #endif
29 
30 #endif /* __declspec_bdiutil_H */
31 
32 
33 /*********************************************************************
34  ** Copyright (c) 1992-2015 VT MAK
35  ** All rights reserved.
36  *********************************************************************/
37