File indexing completed on 2024-05-19 04:29:23

0001 /*
0002  * SPDX-FileCopyrightText: 2022 L. E. Segovia <amy@amyspark.me>
0003  * SPDX-FileCopyrightText: 2022 Dmitry Kazakov <dimula73@gmail.com>
0004  *
0005  * SPDX-License-Ref: GPL-2.0-or-later
0006  */
0007 
0008 #ifndef KRITAUI_EXPORT_INSTANCE_H
0009 #define KRITAUI_EXPORT_INSTANCE_H
0010 
0011 #include "kritaui_export.h"
0012 
0013 /* See https://reviews.llvm.org/D61118 */
0014 
0015 #if defined(__MINGW64__) || defined(__MINGW32__)
0016 #define KRITAUI_EXPORT_TEMPLATE KRITAUI_EXPORT
0017 #define KRITAUI_EXPORT_INSTANCE
0018 #elif defined(_MSC_VER)
0019 #define KRITAUI_EXPORT_TEMPLATE
0020 #define KRITAUI_EXPORT_INSTANCE KRITAUI_EXPORT
0021 #else
0022 #define KRITAUI_EXPORT_TEMPLATE KRITAUI_EXPORT
0023 #define KRITAUI_EXPORT_INSTANCE KRITAUI_EXPORT
0024 #endif
0025 
0026 #endif // KRITAUI_EXPORT_INSTANCE_H