| 1 | /* |
|---|---|
| 2 | * Export.h |
| 3 | * |
| 4 | * This file is part of the XShaderCompiler project (Copyright (c) 2014-2017 by Lukas Hermanns) |
| 5 | * See "LICENSE.txt" for license information. |
| 6 | */ |
| 7 | |
| 8 | #ifndef XSC_EXPORT_H |
| 9 | #define XSC_EXPORT_H |
| 10 | |
| 11 | |
| 12 | #if defined(_MSC_VER) && defined(XSC_SHARED_LIB) |
| 13 | # define XSC_EXPORT __declspec(dllexport) |
| 14 | #else |
| 15 | # define XSC_EXPORT |
| 16 | #endif |
| 17 | |
| 18 | |
| 19 | #endif |
| 20 | |
| 21 | |
| 22 | |
| 23 | // ================================================================================ |