/*
* Copyright(c) 2017 Free Software Foundation, Inc.
*
* This file is part of libwget.
*
* Libwget is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Libwget is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libwget. If not, see .
*
*
* Plugin support
*
*/
#include
#include
#include "private.h"
/**
* \file
* \brief Plugin API for wget2
* \defgroup libwget-plugin Plugin API for wget2
* @{
*
* This is the plugin API for wget2.
*
* Each plugin must define a `wget_plugin_initializer()` function which will be called when the plugin is loaded.
* See \ref wget_plugin_initializer_t "wget_plugin_initializer_t" for the prototype.
* `wget_plugin_initializer()` must also be declared to be exported using `WGET_EXPORT`.
*/
/**
* Gets the name the plugin is known as.
* \param[in] plugin The plugin handle
* \return the name of this plugin. The returned string is owned by wget and should not be freed or altered.
*/
const char *wget_plugin_get_name(wget_plugin_t *plugin)
{
return (* plugin->vtable->get_name)(plugin);
}
/**
* Registers a function to be called when wget exits.
* \param[in] plugin The plugin handle
* \param[in] fn A function pointer to be called
*/
void wget_plugin_register_finalizer(wget_plugin_t *plugin, wget_plugin_finalizer_t fn)
{
(* plugin->vtable->register_finalizer)(plugin, fn);
}
/**
* Registers a function for command line option forwarding.
*
* A option can be forwarded using an option following the pattern:
*
* --plugin-opt=.