📄 funcdesc.java
字号:
/*
* TypeLibWrapper.java
*
* Created on June 1, 2002, 7:55 AM
*/
package org.jawin.win32;
import org.jawin.GUID;
/**
*
* @author cutex1
*/
public class FUNCDESC extends Object
{
/** Creates a new instance of TypeLibWrapper */
public FUNCDESC()
{
}
public int memid; // Function member ID.
public int[] lprgscode;
public ELEMDESC[] lprgelemdescParam;
public int funckind; // Specifies whether the
// function is virtual, static,
// or dispatch-only.
public int invkind; // Invocation kind. Indicates if this is a
// property function, and if so, what kind.
public int callconv; // Specifies the function's calling
// convention.
public short cParams; // Count of total number of parameters.
public short cParamsOpt; // Count of optional parameters (detailed
// description follows).
public short oVft; // For FUNC_VIRTUAL, specifies the offset in the VTBL.
public short cScodes; // Count of permitted return values.
public ELEMDESC elemdescFunc; // Contains the return type of the function.
public short wFuncFlags; // Definition of flags follows.
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -