pipewire/pinos/server/client-node.h

57 lines
1.8 KiB
C
Raw Normal View History

/* Pinos
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef __PINOS_CLIENT_NODE_H__
#define __PINOS_CLIENT_NODE_H__
#include <pinos/server/node.h>
2016-11-14 12:42:00 +01:00
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _PinosClientNode PinosClientNode;
/**
* PinosClientNode:
*
2016-11-10 15:42:14 +01:00
* Pinos client node interface
*/
struct _PinosClientNode {
2016-11-10 15:42:14 +01:00
PinosNode *node;
2016-11-14 12:42:00 +01:00
PINOS_SIGNAL (destroy_signal, (PinosListener *listener,
PinosClientNode *node));
};
2016-11-14 12:42:00 +01:00
PinosClientNode * pinos_client_node_new (PinosCore *core,
PinosClient *client,
const gchar *name,
PinosProperties *properties);
void pinos_client_node_destroy (PinosClientNode *node);
2016-11-14 12:42:00 +01:00
SpaResult pinos_client_node_get_ctrl_socket (PinosClientNode *node, int *fd);
SpaResult pinos_client_node_get_data_socket (PinosClientNode *node, int *fd);
2016-11-14 12:42:00 +01:00
#ifdef __cplusplus
}
#endif
#endif /* __PINOS_CLIENT_NODE_H__ */