03fd479633
Change-Id: I10af2b30c79d1e8ff890d45642988f362d3d0a1e Reviewed-on: https://review.haiku-os.org/c/haiku/+/4012 Reviewed-by: Alex von Gluck IV <kallisti5@unixzen.com>
20 lines
365 B
C
20 lines
365 B
C
/*
|
|
* Copyright 2021, Haiku. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _VIRTIO_INPUT_DRIVER_H_
|
|
#define _VIRTIO_INPUT_DRIVER_H_
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
#include <Drivers.h>
|
|
|
|
|
|
enum {
|
|
virtioInputRead = B_DEVICE_OP_CODES_END + 1,
|
|
virtioInputCancelIO = B_DEVICE_OP_CODES_END + 2,
|
|
};
|
|
|
|
|
|
#endif // _VIRTIO_INPUT_DRIVER_H_
|