Complete chain of passing command line parameters to external renderer

This commit is contained in:
2019-11-15 21:11:41 +01:00
parent fa1a78e54c
commit efb1af7ee0
3 changed files with 8 additions and 4 deletions

View File

@@ -50,9 +50,10 @@ ExternalRenderer *external_renderer_new();
/**
* @brief Create new ExternalRenderer object with specified shared object path
* @param so_path Path to shared object, the rendering function is searched in
* @param param_string Command line parameter string passed to external renderer
* @return New object.
*/
ExternalRenderer *external_renderer_new_with_so(const char *so_path);
ExternalRenderer *external_renderer_new_with_so_and_param(const char *so_path, const char *param_string);
G_END_DECLS