⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usb_common_descriptor.java

📁 usbio Ver 2.40 source code!!! 做USB开发的值得
💻 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 + -