62f661829b
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
21 lines
490 B
C
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
|