qskinny/support/SkinnyGlobal.h

23 lines
622 B
C
Raw Normal View History

2017-07-21 18:21:34 +02:00
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the 3-clause BSD License
*****************************************************************************/
2022-04-01 17:00:50 +02:00
#pragma once
2017-07-21 18:21:34 +02:00
2018-10-12 08:03:03 +02:00
#include <QskGlobal.h>
#ifdef QSK_DLL
2017-07-21 18:21:34 +02:00
2022-04-01 17:00:50 +02:00
#if defined( SKINNY_MAKEDLL ) // create a DLL library
#define SKINNY_EXPORT Q_DECL_EXPORT
#else // use a DLL library
#define SKINNY_EXPORT Q_DECL_IMPORT
#endif
2017-07-21 18:21:34 +02:00
2018-10-12 08:03:03 +02:00
#endif // QSK_DLL
2017-07-21 18:21:34 +02:00
#ifndef SKINNY_EXPORT
2022-04-01 17:00:50 +02:00
#define SKINNY_EXPORT
2017-07-21 18:21:34 +02:00
#endif