📄 usb_common_descriptor.java
字号:
package de.thesycon.usbio.structs;
/**
* The USB_COMMON_DESCRIPTOR class contains the head of a descriptor.
*/
public class USB_COMMON_DESCRIPTOR {
protected int Size;
/** Specifies the length of the descriptor.*/
public int bLength; // 8bit
/** Specifies the type of the descriptor.*/
public int bDescriptorType; // 8bit
/*
* Returns the size of the descriptor.
*/
public int getSize() {return Size;}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -