Add log message to finalize function of example renderer

This commit is contained in:
Mario Hüttel 2020-04-18 03:30:44 +02:00
parent b6a2f29a2f
commit f03dd0ab19

View File

@ -47,6 +47,7 @@ int EXPORTED_FUNC_DECL(EXTERNAL_LIBRARY_INIT_FUNCTION)(const char *params, const
int EXPORTED_FUNC_DECL(EXTERNAL_LIBRARY_FINALIZE_FUNCTION)(void) int EXPORTED_FUNC_DECL(EXTERNAL_LIBRARY_FINALIZE_FUNCTION)(void)
{ {
printf("Finalize function called.\n");
return 0; return 0;
} }