-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Support libpeas based plugin system
- Loading branch information
Showing
21 changed files
with
2,036 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* Clapper Playback Library | ||
* Copyright (C) 2024 Rafał Dzięgiel <[email protected]> | ||
* | ||
* This library 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 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library 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 this library; if not, write to the | ||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, | ||
* Boston, MA 02110-1301, USA. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <glib.h> | ||
#include <glib-object.h> | ||
|
||
G_BEGIN_DECLS | ||
|
||
G_GNUC_INTERNAL | ||
void clapper_enhancers_loader_initialize (void); | ||
|
||
G_GNUC_INTERNAL | ||
gboolean clapper_enhancers_loader_has_enhancers (GType iface_type); | ||
|
||
G_GNUC_INTERNAL | ||
gchar ** clapper_enhancers_loader_get_schemes (GType iface_type); | ||
|
||
G_GNUC_INTERNAL | ||
gboolean clapper_enhancers_loader_check (GType iface_type, const gchar *scheme, const gchar *host, const gchar **name); | ||
|
||
G_GNUC_INTERNAL | ||
GObject * clapper_enhancers_loader_create_enhancer_for_uri (GType iface_type, GUri *uri); | ||
|
||
G_END_DECLS |
Oops, something went wrong.