static void registry_event_global(void *data, uint32_t id,
uint32_t permissions, const char *type, uint32_t version,
{
printf("object: id:%u type:%s/%d\n", id, type, version);
}
.global = registry_event_global,
};
int main(int argc, char *argv[])
{
NULL ,
0 );
NULL ,
0 );
0 );
®istry_events, NULL);
return 0;
}
void pw_context_destroy(struct pw_context *context)
destroy a context object, all resources except the main_loop will be destroyed
Definition: context.c:380
struct pw_context * pw_context_new(struct pw_loop *main_loop, struct pw_properties *props, size_t user_data_size)
Make a new context object for a given main_loop.
Definition: context.c:168
struct pw_core * pw_context_connect(struct pw_context *context, struct pw_properties *properties, size_t user_data_size)
Connect to a PipeWire instance.
Definition: core.c:382
int pw_core_disconnect(struct pw_core *core)
disconnect and destroy a core
Definition: core.c:469
#define PW_VERSION_REGISTRY
Definition: core.h:49
static struct pw_registry * pw_core_get_registry(struct pw_core *core, uint32_t version, size_t user_data_size)
Definition: core.h:385
struct pw_main_loop * pw_main_loop_new(const struct spa_dict *props)
Create a new main loop.
Definition: main-loop.c:60
void pw_main_loop_destroy(struct pw_main_loop *loop)
Destroy a loop.
Definition: main-loop.c:70
int pw_main_loop_run(struct pw_main_loop *loop)
Run a main loop.
Definition: main-loop.c:119
struct pw_loop * pw_main_loop_get_loop(struct pw_main_loop *loop)
Get the loop implementation.
Definition: main-loop.c:93
void pw_init(int *argc, char **argv[])
Initialize PipeWire.
Definition: pipewire.c:558
void pw_proxy_destroy(struct pw_proxy *proxy)
destroy a proxy
Definition: proxy.c:211
#define PW_VERSION_REGISTRY_EVENTS
Definition: core.h:463
#define pw_registry_add_listener(p,...)
Registry.
Definition: core.h:546
#define spa_zero(x)
Definition: defs.h:413
Registry events.
Definition: core.h:461
Definition: utils/dict.h:39
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:331