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

📄 usbio_base_struct.java

📁 usbio Ver 2.40 source code!!! 做USB开发的值得
💻 JAVA
字号:
package de.thesycon.usbio.structs;

/**
 * The USBIO_BASE_STRUCT class is the base class of USBIO struct classes.
 */
public abstract class USBIO_BASE_STRUCT {

	protected int Size;

	/**
	 * Parse the byte array unf fill out the members of the USBIO struct.
	 *
	 * @param Bytes The byte array with the raw data.
 	 */
	public abstract void parseByteArray(byte[] Bytes);

	/**
	 * Builds a byte array from the members of the USBIO struct.
 	 */
	public abstract byte[] buildByteArray();

	/**
	 * Returns the size in bytes of the USBIO struct.
 	 */
	public int getSize() {return Size;}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -