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