rockbox/utils/themeeditor/qtfindreplacedialog/findreplace_global.h
Dominik Riebeling 62f661829b Theme Editor: fix building on Windows.
The imported qtfindreplacedialog assumes getting compiled as library.
Including the files directly causes problems on Windows because of its
__declspec() handling.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27559 a1c6a512-1295-4272-9138-f99709370657
2010-07-25 18:06:41 +00:00

21 lines
490 B
C

/*
* Copyright (C) 2009 Lorenzo Bettini <http://www.lorenzobettini.it>
* See COPYING file that comes with this distribution
*/
#ifndef FINDREPLACE_GLOBAL_H
#define FINDREPLACE_GLOBAL_H
#include <QtCore/qglobal.h>
#ifndef FINDREPLACE_NOLIB
#if defined(FINDREPLACE_LIBRARY)
# define FINDREPLACESHARED_EXPORT Q_DECL_EXPORT
#else
# define FINDREPLACESHARED_EXPORT Q_DECL_IMPORT
#endif
#else
#define FINDREPLACESHARED_EXPORT
#endif
#endif // FINDREPLACE_GLOBAL_H