summaryrefslogtreecommitdiff
path: root/libpeas/peas-object-module.h
diff options
context:
space:
mode:
Diffstat (limited to 'libpeas/peas-object-module.h')
-rw-r--r--libpeas/peas-object-module.h60
1 files changed, 27 insertions, 33 deletions
diff --git a/libpeas/peas-object-module.h b/libpeas/peas-object-module.h
index be242d9..7c3c944 100644
--- a/libpeas/peas-object-module.h
+++ b/libpeas/peas-object-module.h
@@ -76,50 +76,44 @@ struct _PeasObjectModuleClass
};
PEAS_AVAILABLE_IN_ALL
-PeasObjectModule *peas_object_module_new (const gchar *module_name,
- const gchar *path,
- gboolean resident);
+PeasObjectModule *peas_object_module_new (const char *module_name,
+ const char *path,
+ gboolean resident);
PEAS_AVAILABLE_IN_ALL
-PeasObjectModule *peas_object_module_new_full (const gchar *module_name,
- const gchar *path,
- gboolean resident,
- gboolean local_linkage);
+PeasObjectModule *peas_object_module_new_full (const char *module_name,
+ const char *path,
+ gboolean resident,
+ gboolean local_linkage);
PEAS_AVAILABLE_IN_ALL
-PeasObjectModule *peas_object_module_new_embedded (const gchar *module_name,
- const gchar *symbol);
-
+PeasObjectModule *peas_object_module_new_embedded (const char *module_name,
+ const char *symbol);
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
PEAS_AVAILABLE_IN_ALL
-GObject *peas_object_module_create_object (PeasObjectModule *module,
- GType exten_type,
- guint n_parameters,
- GParameter *parameters);
+GObject *peas_object_module_create_object (PeasObjectModule *module,
+ GType exten_type,
+ guint n_parameters,
+ GParameter *parameters);
G_GNUC_END_IGNORE_DEPRECATIONS
PEAS_AVAILABLE_IN_ALL
-gboolean peas_object_module_provides_object (PeasObjectModule *module,
- GType exten_type);
-
+gboolean peas_object_module_provides_object (PeasObjectModule *module,
+ GType exten_type);
PEAS_AVAILABLE_IN_ALL
-const gchar *peas_object_module_get_path (PeasObjectModule *module);
+const char *peas_object_module_get_path (PeasObjectModule *module);
PEAS_AVAILABLE_IN_ALL
-const gchar *peas_object_module_get_module_name (PeasObjectModule *module);
+const char *peas_object_module_get_module_name (PeasObjectModule *module);
PEAS_AVAILABLE_IN_ALL
-const gchar *peas_object_module_get_symbol (PeasObjectModule *module);
-
+const char *peas_object_module_get_symbol (PeasObjectModule *module);
PEAS_AVAILABLE_IN_ALL
-GModule *peas_object_module_get_library (PeasObjectModule *module);
-
+GModule *peas_object_module_get_library (PeasObjectModule *module);
PEAS_AVAILABLE_IN_ALL
-void peas_object_module_register_extension_factory
- (PeasObjectModule *module,
- GType exten_type,
- PeasFactoryFunc factory_func,
- gpointer user_data,
- GDestroyNotify destroy_func);
+void peas_object_module_register_extension_factory (PeasObjectModule *module,
+ GType exten_type,
+ PeasFactoryFunc factory_func,
+ gpointer user_data,
+ GDestroyNotify destroy_func);
PEAS_AVAILABLE_IN_ALL
-void peas_object_module_register_extension_type
- (PeasObjectModule *module,
- GType exten_type,
- GType impl_type);
+void peas_object_module_register_extension_type (PeasObjectModule *module,
+ GType exten_type,
+ GType impl_type);
G_END_DECLS