mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
13 lines
234 B
C
13 lines
234 B
C
#ifndef WIMP_GLOBAL_H
|
|
#define WIMP_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(WIMP_LIBRARY)
|
|
# define WIMPSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define WIMPSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // WIMP_GLOBAL_H
|