blob: ab9faf734d6bf0d2868006af59673be21d02a00a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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 */
|