usb_common_descriptor.java

来自「usbio Ver 2.40 source code!!! 做USB开发的值得」· Java 代码 · 共 19 行

JAVA
19
字号
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 + =
减小字号Ctrl + -
显示快捷键?