1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/* WirePlumber
*
* Copyright © 2020 Collabora Ltd.
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
*
* SPDX-License-Identifier: MIT
*/
#ifndef __WIREPLUMBER_PLUGIN_H__
#define __WIREPLUMBER_PLUGIN_H__
#include "object.h"
G_BEGIN_DECLS
/*!
* \brief Flags to be used as WpObjectFeatures on WpPlugin subclasses.
* \ingroup wpplugin
*/
typedef enum { /*< flags >*/
/*! enables the plugin */
WP_PLUGIN_FEATURE_ENABLED = (1 << 0),
} WpPluginFeatures;
/*!
* \brief The WpPlugin GType
* \ingroup wpplugin
*/
#define WP_TYPE_PLUGIN (wp_plugin_get_type ())
WP_API
G_DECLARE_DERIVABLE_TYPE (WpPlugin, wp_plugin, WP, PLUGIN, WpObject)
struct _WpPluginClass
{
WpObjectClass parent_class;
void (*enable) (WpPlugin * self, WpTransition * transition);
void (*disable) (WpPlugin * self);
/*< private >*/
WP_PADDING(6)
};
WP_API
WpPlugin * wp_plugin_find (WpCore * core, const gchar * plugin_name);
WP_API
const gchar * wp_plugin_get_name (WpPlugin * self);
G_END_DECLS
#endif
|