You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
412 B
25 lines
412 B
/* |
|
SPDX-FileCopyrightText: 2006 Matthias Kretz <kretz@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QtGlobal> |
|
|
|
#if defined _WIN32 || defined _WIN64 |
|
|
|
#ifndef KFONTINST_EXPORT |
|
#if defined(MAKE_KFONTINST_LIB) |
|
#define KFONTINST_EXPORT Q_DECL_EXPORT |
|
#else |
|
#define KFONTINST_EXPORT Q_DECL_IMPORT |
|
#endif |
|
#endif |
|
|
|
#else /* UNIX */ |
|
|
|
#define KFONTINST_EXPORT Q_DECL_EXPORT |
|
|
|
#endif
|
|
|