summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2021-09-29 13:36:04 +0100
committerPhilip Withnall <pwithnall@endlessos.org>2021-09-29 13:36:04 +0100
commit24644208cf1b47ce23a9d594a332635c1b0572b9 (patch)
treea391cb9c2ef254c18bb8c65d26199b9c21cdffee
parent36408b119ff39fc29fcd358016173c89b56f3e32 (diff)
downloadglib-24644208cf1b47ce23a9d594a332635c1b0572b9.tar.gz
giomodule: Skip introspection of two virtual plugin functions
These should be implemented by loadable IO module libraries, but are not callable in GLib itself. Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Fixes: #2498
-rw-r--r--gio/giomodule.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/giomodule.h b/gio/giomodule.h
index e94b8099d..4457c498e 100644
--- a/gio/giomodule.h
+++ b/gio/giomodule.h
@@ -104,7 +104,7 @@ GTypeClass* g_io_extension_ref_class (GIOExtension
/* API for the modules to implement */
/**
- * g_io_module_load:
+ * g_io_module_load: (skip)
* @module: a #GIOModule.
*
* Required API for GIO modules to implement.
@@ -125,7 +125,7 @@ GLIB_AVAILABLE_IN_ALL
void g_io_module_load (GIOModule *module);
/**
- * g_io_module_unload:
+ * g_io_module_unload: (skip)
* @module: a #GIOModule.
*
* Required API for GIO modules to implement.