📄 excepinfo.java
字号:
/*
* DISPPARAMS.java
*
* Created on January 19, 2002, 7:55 AM
*/
package org.jawin.win32;
import org.jawin.Variant;
/**
*
* @author Roger I Martin
*/
public class EXCEPINFO extends Object
{
/** Creates a new instance of IDLDESC */
public EXCEPINFO()
{
}
public short wCode; // An error code describing the error.
public short wReserved;
public String bstrSource; // Source of the exception.
public String bstrDescription; // Textual description of the error.
public String bstrHelpFile; // Help file path.
public long dwHelpContext; // Help context ID.
public Object[] pvReserved;
// Pointer to function that fills in Help and description info.
// HRESULT (STDAPICALLTYPE FAR* pfnDeferredFillIn)
// (struct tagEXCEPINFO FAR*);
// RETURN VALUE return value; // A return value describing the error.
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -