YAMI4 Core Library 2.0.0
Messaging Solution for Distributed Systems
Loading...
Searching...
No Matches
dll.h
1// Copyright Maciej Sobczak 2008-2022.
2// This file is part of YAMI4.
3// See the package-level LICENSE.txt file.
4
5#ifndef YAMICORE_DLL_H_INCLUDED
6#define YAMICORE_DLL_H_INCLUDED
7
8#ifdef _WIN32
9# ifdef YAMI4_DLL_COMPILATION
10# define DLL __declspec(dllexport)
11# endif // YAMI4_DLL_COMPILATION
12# ifdef YAMI4_USE_AS_DLL
13# define DLL __declspec(dllimport)
14# endif // YAMI4_USE_AS_DLL
15#endif // _WIN32
16
17#ifndef DLL
18# define DLL
19#endif // DLL
20
21#endif // YAMICORE_DLL_H_INCLUDED