2018-10-12 08:03:03 +02:00
|
|
|
/******************************************************************************
|
2024-01-17 14:31:45 +01:00
|
|
|
* QSkinny - Copyright (C) The authors
|
2023-04-06 09:23:37 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-10-12 08:03:03 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QSK_INPUTCONTEXT_GLOBAL_H
|
|
|
|
#define QSK_INPUTCONTEXT_GLOBAL_H
|
|
|
|
|
|
|
|
#include "QskGlobal.h"
|
|
|
|
|
|
|
|
#ifdef QSK_DLL
|
|
|
|
|
|
|
|
#if defined( QSK_INPUTCONTEXT_MAKEDLL ) // create a DLL library
|
|
|
|
#define QSK_INPUTCONTEXT_EXPORT Q_DECL_EXPORT
|
|
|
|
#else // use a DLL library
|
|
|
|
#define QSK_INPUTCONTEXT_EXPORT Q_DECL_IMPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // QSK_DLL
|
|
|
|
|
|
|
|
#ifndef QSK_INPUTCONTEXT_EXPORT
|
|
|
|
#define QSK_INPUTCONTEXT_EXPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|