1/*
2 * Copyright 2021, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _VIRTIO_INPUT_DRIVER_H_
6#define _VIRTIO_INPUT_DRIVER_H_
7
8
9#include <SupportDefs.h>
10#include <Drivers.h>
11
12
13enum {
14	virtioInputRead     = B_DEVICE_OP_CODES_END + 1,
15	virtioInputCancelIO = B_DEVICE_OP_CODES_END + 2,
16};
17
18
19#endif	// _VIRTIO_INPUT_DRIVER_H_
20