1/*
2 * Copyright 2021, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _USB_ISOCHRONOUS_H
6#define _USB_ISOCHRONOUS_H
7
8
9#include <SupportDefs.h>
10
11
12typedef struct {
13	int16						request_length;
14	int16						actual_length;
15	status_t					status;
16} usb_iso_packet_descriptor;
17
18
19#endif	/* _USB_ISOCHRONOUS_H */
20