/usr/include/linux/usb
NameSizeModeActions
audio.h194900644editdlrm
cdc-wdm.h7390644editdlrm
cdc.h134780644editdlrm
ch9.h406360644editdlrm
ch11.h90460644editdlrm
charger.h5980644editdlrm
functionfs.h166560644editdlrm
gadgetfs.h28180644editdlrm
g_printer.h13850644editdlrm
g_uvc.h10970644editdlrm
midi.h34340644editdlrm
raw_gadget.h82870644editdlrm
tmc.h48540644editdlrm
video.h172950644editdlrm
Edit: /usr/include/linux/usb/cdc-wdm.h (739B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * USB CDC Device Management userspace API definitions * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free Software Foundation. */ #ifndef __LINUX_USB_CDC_WDM_H #define __LINUX_USB_CDC_WDM_H #include /* * This IOCTL is used to retrieve the wMaxCommand for the device, * defining the message limit for both reading and writing. * * For CDC WDM functions this will be the wMaxCommand field of the * Device Management Functional Descriptor. */ #define IOCTL_WDM_MAX_COMMAND _IOR('H', 0xA0, __u16) #endif /* __LINUX_USB_CDC_WDM_H */