blob: f9260116a73de9d627769a79ee7ed1add8b136a6 [file] [log] [blame]
Manos Pitsidianakis4ae0fc12024-01-04 21:09:40 +00001/*
2 * Vhost-user Sound virtio device
3 *
4 * Copyright (c) 2021 Mathieu Poirier <mathieu.poirier@linaro.org>
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#ifndef QEMU_VHOST_USER_SND_H
10#define QEMU_VHOST_USER_SND_H
11
12#include "hw/virtio/virtio.h"
13#include "hw/virtio/vhost.h"
14#include "hw/virtio/vhost-user.h"
15#include "hw/virtio/vhost-user-base.h"
16
17#define TYPE_VHOST_USER_SND "vhost-user-snd"
18OBJECT_DECLARE_SIMPLE_TYPE(VHostUserSound, VHOST_USER_SND)
19
20struct VHostUserSound {
21 VHostUserBase parent_obj;
22};
23
24#endif /* QEMU_VHOST_USER_SND_H */