cjnaunitsync.java
来自「这是整套横扫千军3D版游戏的源码」· Java 代码 · 共 28 行
JAVA
28 行
/* * CJNAUnitsync.java * * Created on 17-Sep-2007, 09:07:13 * * To change this template, choose Tools | Templates * and open the template in the editor. */package aflobby;/** * * @author AF-StandardUsr */import com.sun.jna.*;import com.sun.jna.win32.StdCallLibrary; public interface CJNAUnitsync extends StdCallLibrary { CJNAUnitsync INSTANCE = (CJNAUnitsync) Native.loadLibrary("unitsync", CJNAUnitsync.class); CJNAUnitsync INSTANCE2 = (CJNAUnitsync) Native.loadLibrary("unitsyncVS2005", CJNAUnitsync.class); public int Init(boolean isServer, int id); String GetSpringVersion();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?