My Project
 
Loading...
Searching...
No Matches
dll-export.h
Go to the documentation of this file.
1// Copyright (c) 2025 Milton McDonald
2// This source code is licensed under the MIT License. See LICENSE file in the
3// project root for details.
4
5#ifndef ENGINE_LIB_DLL_EXPORT_H_
6#define ENGINE_LIB_DLL_EXPORT_H_
7
8#ifdef _WIN32
9#ifdef BUILD_SHARED_LIBS
10#ifdef ENGINE_LIB_EXPORTS
11#define DLLEXPORT __declspec(dllexport)
12#else
13#define DLLEXPORT __declspec(dllimport)
14#endif
15#else
16#define DLLEXPORT
17#endif
18#else
19#define DLLEXPORT
20#endif
21
22#endif // ENGINE_LIB_DLL_EXPORT_H_