2009-09-01 22:48:34 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Haiku Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2004-05-26 18:57:57 +04:00
|
|
|
#ifndef _USB_PRINTER_H
|
|
|
|
#define _USB_PRINTER_H
|
|
|
|
|
|
|
|
|
2009-09-01 22:48:34 +04:00
|
|
|
#include <Drivers.h>
|
2004-05-26 18:57:57 +04:00
|
|
|
|
|
|
|
|
2009-09-01 22:48:34 +04:00
|
|
|
enum {
|
|
|
|
USB_PRINTER_GET_DEVICE_ID = B_DEVICE_OP_CODES_END + 1
|
2004-05-26 18:57:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define USB_PRINTER_DEVICE_ID_LENGTH 256
|
2009-09-01 22:48:34 +04:00
|
|
|
/* buffer size to be handed to above ioctl() call */
|
2004-05-26 18:57:57 +04:00
|
|
|
|
|
|
|
|
2009-09-01 22:48:34 +04:00
|
|
|
#endif /* _USB_PRINTER_H */
|