1/*
2 * Copyright 2009, Haiku Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _USB_PRINTER_H
6#define _USB_PRINTER_H
7
8
9#include <Drivers.h>
10
11
12enum {
13	USB_PRINTER_GET_DEVICE_ID = B_DEVICE_OP_CODES_END + 1
14};
15
16#define USB_PRINTER_DEVICE_ID_LENGTH	256
17	/* buffer size to be handed to above ioctl() call */
18
19
20#endif	/* _USB_PRINTER_H */
21