mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-05-25 18:28:12 +02:00
13 lines
459 B
C
13 lines
459 B
C
#ifndef PIPEWIRE_PULSE_EXTENSION_REGISTRY_H
|
|
#define PIPEWIRE_PULSE_EXTENSION_REGISTRY_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct client;
|
|
struct message;
|
|
|
|
int do_extension_stream_restore(struct client *client, uint32_t tag, struct message *m);
|
|
int do_extension_device_restore(struct client *client, uint32_t tag, struct message *m);
|
|
int do_extension_device_manager(struct client *client, uint32_t tag, struct message *m);
|
|
|
|
#endif /* PIPEWIRE_PULSE_EXTENSION_REGISTRY_H */
|