MLpp
dll.hpp
Go to the documentation of this file.
1
#pragma once
2
/* (C) 2020 Roman Werpachowski. */
3
8
#ifdef MLPP_IS_STATIC
9
#define DLL_DECLSPEC
10
#else
11
#ifdef _MSC_VER
12
#ifdef _EXPORTING
13
#define DLL_DECLSPEC __declspec(dllexport)
14
#else
15
#define DLL_DECLSPEC __declspec(dllimport)
16
#endif // _EXPORTING
17
#else
18
#define DLL_DECLSPEC
19
#endif // _MSV_VER
20
#endif // MLPP_IS_STATIC
ML
dll.hpp
Generated by
1.8.17