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

📄 idldesc.java

📁 java 调用windows的api
💻 JAVA
字号:
/*
 * IDLDESC.java
 *
 * Created on January 19, 2002, 7:55 AM
 */

package org.jawin.win32;

/**
 *
 * @author  Roger I Martin
 */
public class IDLDESC extends Object
{
    
   /** Creates a new instance of IDLDESC */
    public IDLDESC()
    {
    }
    
    public long dwReserved;
    public short wIDLFlags;

    public static final int IDLFLAG_NONE=0;   // Whether the parameter passes or receives information is unspecified. 
    public static final int IDLFLAG_FIN=1;    // Parameter passes information from the caller to the callee. 
    public static final int IDLFLAG_FOUT=2;   // Parameter returns information from the callee to the caller. 
    public static final int IDLFLAG_FLCID=4;  // Parameter is the local identifier of a client application. 
    public static final int IDLFLAG_FRETVAL=8;    // Parameter is the return value of the member. 


}

⌨️ 快捷键说明

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