1 /* 2 * Copyright 2020, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT license. 4 */ 5 #ifndef WACOM_DRIVER_H 6 #define WACOM_DRIVER_H 7 8 9 #include <SupportDefs.h> 10 11 12 typedef struct { 13 uint16 vendor_id; 14 uint16 product_id; 15 size_t max_packet_size; 16 } _PACKED wacom_device_header; 17 18 19 #endif // WACOM_DRIVER_H 20