pipewire/src/modules/module-protocol-pulse/extensions/registry.h
Barnabás Pőcze 80ae688cc6 pulse-server: compile extensions separately
Avoid including other C source files. Compile them separately.
2021-10-18 15:36:17 +02:00

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 */