mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-05 13:30:02 -05:00
Make native protocol
Remove DBus and work towards something like wayland. Remove more glib stuff from the client code
This commit is contained in:
parent
efae64a759
commit
27bba6f587
55 changed files with 3089 additions and 4969 deletions
|
|
@ -39,18 +39,25 @@ typedef struct _PinosClientNode PinosClientNode;
|
|||
struct _PinosClientNode {
|
||||
PinosNode *node;
|
||||
|
||||
PinosClient *client;
|
||||
PinosResource *resource;
|
||||
|
||||
PINOS_SIGNAL (destroy_signal, (PinosListener *listener,
|
||||
PinosClientNode *node));
|
||||
};
|
||||
|
||||
PinosClientNode * pinos_client_node_new (PinosCore *core,
|
||||
const gchar *name,
|
||||
PinosClientNode * pinos_client_node_new (PinosClient *client,
|
||||
uint32_t id,
|
||||
const char *name,
|
||||
PinosProperties *properties);
|
||||
SpaResult pinos_client_node_destroy (PinosClientNode *node);
|
||||
|
||||
SpaResult pinos_client_node_get_ctrl_socket (PinosClientNode *node, int *fd);
|
||||
SpaResult pinos_client_node_get_data_socket (PinosClientNode *node, int *fd);
|
||||
|
||||
SpaResult pinos_client_node_dispatch_message (PinosClientNode *node,
|
||||
PinosMessageType type,
|
||||
void *message);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue