1234567891011121314151617181920212223242526272829 |
- package kr.co.icontrols.v40ioctl;
- public class V40IOInterface {
- String TAG = "V40IOInterface";
- static {
- System.loadLibrary("wpd_v40interface-jni");
- }
- public native int WpdInterfaceOpen();
- public native int WpdInterfaceClose();
- public native int WpdInterfaceControl(int cmd, int arg);
- public native void SetMacAddr(String mac);
- public native void IpAddr(String ip);
- public native void GatewayIp(String gw);
- public native void NetMask(String mask);
- public native void NetAll(String ip, String mask, String gw, String mac);
- public native void LiveUpdate();
- public native void UsbUpdate();
- public native int LcdWakeUp();
- public native void Reboot(int sec);
- public native void NetDns1(String dns);
- public native void NetDns2(String dns);
- public native int sensorread();
- }
|