| Top |
| #define | AGS_REGISTRY_GET_OBJ_MUTEX() |
| AgsRegistryEntry * | ags_registry_entry_alloc () |
| void | ags_registry_entry_free () |
| void | ags_registry_add_entry () |
| AgsRegistryEntry * | ags_registry_find_entry () |
| AgsRegistry * | ags_registry_new () |
#define AGS_REGISTRY_GET_OBJ_MUTEX(obj) (&(((AgsRegistry *) obj)->obj_mutex))
AgsRegistryEntry * ags_registry_entry_alloc ();
Allocated AgsRegistryEntry.
Since: 3.0.0
void
ags_registry_entry_free (AgsRegistryEntry *registry_entry);
Free registry_entry
Since: 3.0.0
void ags_registry_add_entry (AgsRegistry *registry,AgsRegistryEntry *registry_entry);
Add registry_entry
to registry
.
Since: 3.0.0
AgsRegistryEntry * ags_registry_find_entry (AgsRegistry *registry,AgsUUID *id);
Find id
as AgsRegistryEntry in registry
.
Since: 3.0.0
struct AgsRegistryEntry {
AgsUUID *id;
GValue *entry;
};
AgsRegistryEntry is an entry that you might want to lookup remotely.