25#ifndef PIPEWIRE_IMPL_CORE_H
26#define PIPEWIRE_IMPL_CORE_H
53#define PW_VERSION_IMPL_CORE_EVENTS 0
66 size_t user_data_size);
struct pw_impl_core * pw_context_create_core(struct pw_context *context, struct pw_properties *properties, size_t user_data_size)
Definition: impl-core.c:404
void * pw_impl_core_get_user_data(struct pw_impl_core *core)
Definition: impl-core.c:655
const struct pw_core_info * pw_impl_core_get_info(struct pw_impl_core *core)
Get the core information.
const struct pw_properties * pw_impl_core_get_properties(struct pw_impl_core *core)
Get the core properties.
Definition: impl-core.c:572
int pw_impl_core_update_properties(struct pw_impl_core *core, const struct spa_dict *dict)
Update the core properties.
Definition: impl-core.c:578
struct pw_impl_core * pw_context_get_default_core(struct pw_context *context)
Definition: impl-core.c:465
struct pw_global * pw_impl_core_get_global(struct pw_impl_core *core)
Get the global of this core.
Definition: impl-core.c:661
int pw_impl_core_register(struct pw_impl_core *core, struct pw_properties *properties)
Definition: impl-core.c:601
void pw_impl_core_add_listener(struct pw_impl_core *core, struct spa_hook *listener, const struct pw_impl_core_events *events, void *data)
Add an event listener.
Definition: impl-core.c:667
void pw_impl_core_destroy(struct pw_impl_core *core)
Definition: impl-core.c:471
The core information.
Definition: core.h:87
Factory events, listen to them with pw_impl_core_add_listener.
Definition: impl-core.h:57
void(* destroy)(void *data)
the core is destroyed
Definition: impl-core.h:63
uint32_t version
Definition: impl-core.h:60
void(* free)(void *data)
the core is freed
Definition: impl-core.h:65
void(* initialized)(void *data)
the core is initialized
Definition: impl-core.h:67
Definition: properties.h:53
Definition: utils/dict.h:59
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351