mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-05 13:30:02 -05:00
Including C headers inside of `extern "C"` breaks use from C++. Hoist the includes of standard C headers above the block so we don't try to mangle the stdlib. I initially tried to scope this with a targeted change but it's too hard to do correctly that way. This way, we avoid whack-a-mole. Firefox is working around this in their e21461b7b8b39cc31ba53c47d4f6f310c673ff2f commit. Bug: https://bugzilla.mozilla.org/1953080
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
/* PipeWire */
|
|
/* SPDX-FileCopyrightText: Copyright © 2016 Wim Taymans <wim.taymans@gmail.com> */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef __PIPEWIRE_CLIENT_NODE0_TRANSPORT_H__
|
|
#define __PIPEWIRE_CLIENT_NODE0_TRANSPORT_H__
|
|
|
|
#include <string.h>
|
|
|
|
#include <spa/utils/defs.h>
|
|
|
|
#include <pipewire/mem.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** information about the transport region \memberof pw_client_node */
|
|
struct pw_client_node0_transport_info {
|
|
int memfd; /**< the memfd of the transport area */
|
|
uint32_t offset; /**< offset to map \a memfd at */
|
|
uint32_t size; /**< size of memfd mapping */
|
|
};
|
|
|
|
struct pw_client_node0_transport *
|
|
pw_client_node0_transport_new(struct pw_context *context, uint32_t max_input_ports, uint32_t max_output_ports);
|
|
|
|
struct pw_client_node0_transport *
|
|
pw_client_node0_transport_new_from_info(struct pw_client_node0_transport_info *info);
|
|
|
|
int
|
|
pw_client_node0_transport_get_info(struct pw_client_node0_transport *trans,
|
|
struct pw_client_node0_transport_info *info);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* __PIPEWIRE_CLIENT_NODE0_TRANSPORT_H__ */
|