vardesc.java
来自「java 调用windows的api」· Java 代码 · 共 36 行
JAVA
36 行
/*
* DISPPARAMS.java
*
* Created on January 19, 2002, 7:55 AM
*/
package org.jawin.win32;
import org.jawin.Variant;
/**
*
* @author Roger I Martin
*/
public class VARDESC extends Object
{
/** Creates a new instance of IDLDESC */
public VARDESC()
{
}
public int memid;
public String lpstrSchema; // Reserved for future use.
public long oInst; // VAR_PERINSTANCE, the offset of this
// variable within the instance.
public Variant[] lpvarValue; // VAR_CONST, the value of the constant.
public ELEMDESC elemdescVar; // Contains the variable type.
public short wVarFlags; // Definition of flags follows
public int varkind;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?