DI-Guy C++ SDK Reference  13.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
declspec_diguy_util.h
Go to the documentation of this file.
1 
2 /*********************************************************************
3  ** Copyright (c) 1992-2014 VT MAK
4  ** All rights reserved.
5  *********************************************************************/
6 
7 #ifndef __declspec_diguy_util_H
8 #define __declspec_diguy_util_H
9 
10 #ifdef _WIN32
11 # ifdef BDI_DLL
12 # ifdef BDI_DLL_EXPORT_diguy_util
13 # define BDI_DECLSPEC_diguy_util __declspec(dllexport)
14 # if BDI_PRINT_DECLSPEC_MESSAGES
15 # pragma message("BDI_DECLSPEC_diguy_util explicitly set to dllexport")
16 # endif
17 # else
18 # define BDI_DECLSPEC_diguy_util __declspec(dllimport)
19 # if BDI_PRINT_DECLSPEC_MESSAGES
20 # pragma message("BDI_DECLSPEC_diguy_util implicitly set to dllimport")
21 # endif
22 # endif
23 # endif
24 #endif
25 
26 #ifndef BDI_DECLSPEC_diguy_util
27 # define BDI_DECLSPEC_diguy_util
28 #endif
29 
30 #endif /* __declspec_diguy_util_H */
31 
32 
33 /*********************************************************************
34  ** Copyright (c) 1992-2014 VT MAK
35  ** All rights reserved.
36  *********************************************************************/
37