From 97b7fb41b0f501362419929df3776dd6e2556a7d Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Tue, 27 Mar 2012 22:01:00 +0200 Subject: [PATCH] Update doc --- plugin-api.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugin-api.h b/plugin-api.h index 0256f4c..cfd6f54 100644 --- a/plugin-api.h +++ b/plugin-api.h @@ -20,13 +20,17 @@ typedef void (*zathura_plugin_register_function_t)(zathura_plugin_functions_t* f * Sets the functions register function of the plugin * * @param plugin The plugin + * @param register_function The register function that registers the document + * functions */ -void zathura_plugin_set_register_functions_function(zathura_plugin_t* plugin, zathura_plugin_register_function_t register_function); +void zathura_plugin_set_register_functions_function(zathura_plugin_t* plugin, + zathura_plugin_register_function_t register_function); /** * Sets the functions register function of the plugin * * @param plugin The plugin + * @param mime_type The mime type that should be added */ void zathura_plugin_add_mimetype(zathura_plugin_t* plugin, const char* mime_type);