winfuncptr.java

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

JAVA
24
字号
//******************************************************************
// Released under the DevelopMentor OpenSource Software License.
// Please consult the LICENSE file in the project root directory,
// or at http://www.develop.com for details before using this
// software.
//******************************************************************

package org.jawin;

import java.io.*;

/**
 * Extend WinFuncPtr to implement a win32 callback function
 * WinFuncPtr is an abstract class instead of interface so that 
 * the method can be marked protected
 */
 
public abstract class WinFuncPtr {

    abstract protected byte[] call(byte[] inargs, Object[] inobjs)
            throws IOException;

}

⌨️ 快捷键说明

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