MSVC: EXPORT macro fixes

This commit is contained in:
Lukas W
2017-11-22 11:01:21 +01:00
parent 9ae1bdecda
commit ba2ed12f05
43 changed files with 49 additions and 45 deletions

View File

@@ -877,7 +877,7 @@ __attribute__((destructor)) static void module_destroy()
extern "C" {
// necessary for getting instance out of shared lib
Plugin * PLUGIN_EXPORT lmms_plugin_main(Model *, void * _data) {
PLUGIN_EXPORT Plugin * lmms_plugin_main(Model *, void * _data) {
return (new Expressive(static_cast<InstrumentTrack *>(_data)));
}