idldesc.java

来自「java 调用windows的api」· Java 代码 · 共 32 行

JAVA
32
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?