mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-20 06:59:58 -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
49 lines
972 B
C
49 lines
972 B
C
/* Simple Plugin API */
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef SPA_COMMAND_H
|
|
#define SPA_COMMAND_H
|
|
|
|
#include <spa/utils/defs.h>
|
|
#include <spa/pod/pod.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* \addtogroup spa_pod
|
|
* \{
|
|
*/
|
|
|
|
struct spa_command_body {
|
|
struct spa_pod_object_body body;
|
|
};
|
|
|
|
struct spa_command {
|
|
struct spa_pod pod;
|
|
struct spa_command_body body;
|
|
};
|
|
|
|
#define SPA_COMMAND_TYPE(cmd) ((cmd)->body.body.type)
|
|
#define SPA_COMMAND_ID(cmd,type) (SPA_COMMAND_TYPE(cmd) == (type) ? \
|
|
(cmd)->body.body.id : SPA_ID_INVALID)
|
|
|
|
#define SPA_COMMAND_INIT_FULL(t,size,type,id,...) ((t) \
|
|
{ { (size), SPA_TYPE_Object }, \
|
|
{ { (type), (id) }, ##__VA_ARGS__ } })
|
|
|
|
#define SPA_COMMAND_INIT(type,id) \
|
|
SPA_COMMAND_INIT_FULL(struct spa_command, \
|
|
sizeof(struct spa_command_body), type, id)
|
|
|
|
/**
|
|
* \}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* SPA_COMMAND_H */
|