mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-05 23:48:44 +02:00
girepository: Rename symbols to the GI namespace
Rather than a mix of structs being in `GI` and their methods being in `g_`. We’ve chosen not to use the `g_` namespace because a number of the libgirepository class names are quite generic, so we’d end up with confusing symbols like `GScopeType` and `GArgument`. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3155
This commit is contained in:
@@ -39,22 +39,22 @@ G_BEGIN_DECLS
|
||||
* Checks if @info is a #GIPropertyInfo.
|
||||
*/
|
||||
#define GI_IS_PROPERTY_INFO(info) \
|
||||
(g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_PROPERTY)
|
||||
(gi_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_PROPERTY)
|
||||
|
||||
|
||||
GI_AVAILABLE_IN_ALL
|
||||
GParamFlags g_property_info_get_flags (GIPropertyInfo *info);
|
||||
GParamFlags gi_property_info_get_flags (GIPropertyInfo *info);
|
||||
|
||||
GI_AVAILABLE_IN_ALL
|
||||
GITypeInfo * g_property_info_get_type (GIPropertyInfo *info);
|
||||
GITypeInfo * gi_property_info_get_type (GIPropertyInfo *info);
|
||||
|
||||
GI_AVAILABLE_IN_ALL
|
||||
GITransfer g_property_info_get_ownership_transfer (GIPropertyInfo *info);
|
||||
GITransfer gi_property_info_get_ownership_transfer (GIPropertyInfo *info);
|
||||
|
||||
GI_AVAILABLE_IN_ALL
|
||||
GIFunctionInfo *g_property_info_get_setter (GIPropertyInfo *info);
|
||||
GIFunctionInfo *gi_property_info_get_setter (GIPropertyInfo *info);
|
||||
|
||||
GI_AVAILABLE_IN_ALL
|
||||
GIFunctionInfo *g_property_info_get_getter (GIPropertyInfo *info);
|
||||
GIFunctionInfo *gi_property_info_get_getter (GIPropertyInfo *info);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
Reference in New Issue
Block a user