plugins: python renderer: Fix broken code due to merge. Functions of plugins now have to be exported explicitly.

This commit is contained in:
2019-11-18 22:07:58 +01:00
parent bd4d91807b
commit 246695610c
4 changed files with 16 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ int EXPORTED_FUNC_DECL(EXTERNAL_LIBRARY_INIT_FUNCTION)(const char *params, const
return 0;
}
int FUNC_DECL(EXTERNAL_LIBRARY_FINALIZE_FUNCTION)(void)
int EXPORTED_FUNC_DECL(EXTERNAL_LIBRARY_FINALIZE_FUNCTION)(void)
{
return 0;
}