pipewire/pinos/server/client-node.h

66 lines
2.2 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
2016-11-15 17:06:09 +01:00
#define PINOS_CLIENT_NODE_URI "http://pinos.org/ns/client-node"
#define PINOS_CLIENT_NODE_PREFIX PINOS_CLIENT_NODE_URI "#"
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;
PinosClient *client;
PinosResource *resource;
2016-11-14 12:42:00 +01:00
PINOS_SIGNAL (destroy_signal, (PinosListener *listener,
PinosClientNode *node));
};
PinosClientNode * pinos_client_node_new (PinosClient *client,
uint32_t id,
const char *name,
2016-11-14 12:42:00 +01:00
PinosProperties *properties);
2016-11-15 17:06:09 +01:00
SpaResult pinos_client_node_destroy (PinosClientNode *node);
2016-11-14 12:42:00 +01:00
SpaResult pinos_client_node_get_data_socket (PinosClientNode *node, int *fd);
SpaResult pinos_client_node_dispatch_message (PinosClientNode *node,
PinosMessageType type,
void *message);
2016-11-14 12:42:00 +01:00
#ifdef __cplusplus
}
#endif
#endif /* __PINOS_CLIENT_NODE_H__ */