mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-19 06:46:26 -04: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
50 lines
1 KiB
C
50 lines
1 KiB
C
/* Simple Plugin API */
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef SPA_DEBUG_DICT_H
|
|
#define SPA_DEBUG_DICT_H
|
|
|
|
#include <spa/debug/context.h>
|
|
#include <spa/utils/dict.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* \addtogroup spa_debug
|
|
* \{
|
|
*/
|
|
|
|
#ifndef SPA_API_DEBUG_DICT
|
|
#ifdef SPA_API_IMPL
|
|
#define SPA_API_DEBUG_DICT SPA_API_IMPL
|
|
#else
|
|
#define SPA_API_DEBUG_DICT static inline
|
|
#endif
|
|
#endif
|
|
|
|
SPA_API_DEBUG_DICT int spa_debugc_dict(struct spa_debug_context *ctx, int indent, const struct spa_dict *dict)
|
|
{
|
|
const struct spa_dict_item *item;
|
|
spa_debugc(ctx, "%*sflags:%08x n_items:%d", indent, "", dict->flags, dict->n_items);
|
|
spa_dict_for_each(item, dict) {
|
|
spa_debugc(ctx, "%*s %s = \"%s\"", indent, "", item->key, item->value);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
SPA_API_DEBUG_DICT int spa_debug_dict(int indent, const struct spa_dict *dict)
|
|
{
|
|
return spa_debugc_dict(NULL, indent, dict);
|
|
}
|
|
/**
|
|
* \}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* SPA_DEBUG_DICT_H */
|