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

📄 excepinfo.java

📁 java 调用windows的api
💻 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 + -