pipewire/src/modules/module-client-node/client-node.h
Barnabás Pőcze 934ab3036e treewide: use SPDX tags to specify copyright information
SPDX tags make the licensing information easy to understand and clear,
and they are machine parseable.

See https://spdx.dev for more information.
2023-02-16 10:54:48 +00:00

40 lines
848 B
C

/* PipeWire */
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
/* SPDX-License-Identifier: MIT */
#ifndef PIPEWIRE_CLIENT_NODE_H
#define PIPEWIRE_CLIENT_NODE_H
#include <pipewire/impl.h>
#include <pipewire/extensions/client-node.h>
#ifdef __cplusplus
extern "C" {
#endif
/** \class pw_impl_client_node
*
* PipeWire client node interface
*/
struct pw_impl_client_node {
struct pw_impl_node *node;
struct pw_resource *resource;
uint32_t flags;
};
struct pw_impl_client_node *
pw_impl_client_node_new(struct pw_resource *resource,
struct pw_properties *properties,
bool do_register);
void
pw_impl_client_node_destroy(struct pw_impl_client_node *node);
void pw_impl_client_node_registered(struct pw_impl_client_node *node, struct pw_global *global);
#ifdef __cplusplus
}
#endif
#endif /* PIPEWIRE_CLIENT_NODE_H */