pipewire/src/modules/module-avb/avb.h
Barnabás Pőcze db510e769a pipewire: module-avb: add missing "stddef.h" include in "avb.h"
Including "stddef.h" is needed for `size_t`.
2023-07-03 19:40:31 +02:00

26 lines
502 B
C

/* PipeWire */
/* SPDX-FileCopyrightText: Copyright © 2022 Wim Taymans */
/* SPDX-License-Identifier: MIT */
#ifndef PIPEWIRE_AVB_H
#define PIPEWIRE_AVB_H
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
struct pw_context;
struct pw_properties;
struct pw_avb;
struct pw_avb *pw_avb_new(struct pw_context *context,
struct pw_properties *props, size_t user_data_size);
void pw_avb_destroy(struct pw_avb *avb);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* PIPEWIRE_AVB_H */