golden hour
/usr/include/linux/usb
⬆️ Go Up
Upload
File/Folder
Size
Actions
audio.h
16.66 KB
Del
OK
cdc-wdm.h
676 B
Del
OK
cdc.h
12.6 KB
Del
OK
ch11.h
8.65 KB
Del
OK
ch9.h
37.54 KB
Del
OK
functionfs.h
4.85 KB
Del
OK
g_printer.h
1.29 KB
Del
OK
gadgetfs.h
2.69 KB
Del
OK
midi.h
3.29 KB
Del
OK
tmc.h
2.66 KB
Del
OK
video.h
15.77 KB
Del
OK
Edit: cdc-wdm.h
/* * 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 <linux/types.h> /* * 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 */
Save