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