mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
50 lines
1.7 KiB
C
50 lines
1.7 KiB
C
/*
|
|
This file is part of the kresources library.
|
|
Copyright (c) 2006 Allen Winter <winter@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KCMKRESOURCES_EXPORT_H
|
|
#define KCMKRESOURCES_EXPORT_H
|
|
|
|
#include <kdemacros.h>
|
|
|
|
#ifndef KCM_KRESOURCES_EXPORT
|
|
# if defined(KDEPIM_STATIC_LIBS)
|
|
/* No export/import for static libraries */
|
|
# define KCM_KRESOURCES_EXPORT
|
|
# elif defined(MAKE_KCM_KRESOURCES_LIB)
|
|
/* We are building this library */
|
|
# define KCM_KRESOURCES_EXPORT KDE_EXPORT
|
|
# else
|
|
/* We are using this library */
|
|
# define KCM_KRESOURCES_EXPORT KDE_IMPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef KCM_KRESOURCES_EXPORT_DEPRECATED
|
|
# if !defined( WANT_DEPRECATED_KRESOURCE_API )
|
|
# define KCM_KRESOURCES_EXPORT_DEPRECATED KDE_DEPRECATED KCM_KRESOURCES_EXPORT
|
|
# define KCM_KRESOURCES_DEPRECATED_EXPORT KDE_DEPRECATED KCM_KRESOURCES_EXPORT
|
|
# define KCM_KRESOURCES_DEPRECATED KDE_DEPRECATED
|
|
# else
|
|
# define KCM_KRESOURCES_EXPORT_DEPRECATED KCM_KRESOURCES_EXPORT
|
|
# define KCM_KRESOURCES_DEPRECATED_EXPORT KCM_KRESOURCES_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|