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_
|