pulse-server: compile extensions separately

Avoid including other C source files. Compile them separately.
This commit is contained in:
Barnabás Pőcze 2021-10-18 15:00:33 +02:00
parent b78371f702
commit 80ae688cc6
6 changed files with 30 additions and 10 deletions

View file

@ -0,0 +1,8 @@
#include <errno.h>
#include "registry.h"
int do_extension_device_manager(struct client *client, uint32_t tag, struct message *m)
{
return -ENOTSUP;
}