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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2012-2017 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
/**
* SECTION:gs-plugin-vfuncs
* @title: GsPlugin Exports
* @include: gnome-software.h
* @stability: Unstable
* @short_description: Vfuncs that plugins can implement
*/
#include <appstream.h>
#include <glib-object.h>
#include <gmodule.h>
#include <gio/gio.h>
#include <libsoup/soup.h>
#include "gs-app.h"
#include "gs-app-list.h"
#include "gs-category.h"
G_BEGIN_DECLS
/**
* gs_plugin_query_type:
*
* Returns the #GType for a subclass of #GsPlugin provided by this plugin
* module. It should not do any other computation.
*
* The init function for that type should initialize the plugin. If the plugin
* should not be run then gs_plugin_set_enabled() should be called from the
* init function.
*
* NOTE: Do not do any failable actions in the plugin class’ init function; use
* #GsPluginClass.setup_async instead.
*
* Since: 42
*/
GType gs_plugin_query_type (void);
G_END_DECLS
|