mirror of
https://github.com/ModOrganizer2/modorganizer-plugin_python.git
synced 2026-07-27 14:03:33 -07:00
dependencies that fulfills the plugin interface. The other contains the actual python functionality. This way the outer dll can always be loaded and report issues. - The build process embeds the second dll into the first, this way only one dll has to be shipped
13 lines
282 B
C
13 lines
282 B
C
#ifndef PYTHONRUNNER_GLOBAL_H
|
|
#define PYTHONRUNNER_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(PYTHONRUNNER_LIBRARY)
|
|
# define PYTHONRUNNERSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define PYTHONRUNNERSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // PYTHONRUNNER_GLOBAL_H
|