
ca.weblite.objc.RuntmeArm64Extensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-objc-bridge Show documentation
Show all versions of java-objc-bridge Show documentation
A thin bridge that allows for two-way communication from Java to Objective-C.
package ca.weblite.objc;
import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.Pointer;
public interface RuntmeArm64Extensions extends Library {
public static RuntmeArm64Extensions INSTANCE = (RuntmeArm64Extensions) Native.loadLibrary("objc.A", RuntmeArm64Extensions.class);
public double objc_msgSend(Pointer theReceiver, Pointer theSelector);
public double objc_msgSend(Pointer theReceiver, Pointer theSelector,Object arg);
public double objc_msgSend(Pointer theReceiver, Pointer theSelector,Object arg, Object arg2);
public double objc_msgSend(Pointer theReceiver, Pointer theSelector,Object arg, Object arg2, Object arg3);
public double objc_msgSend(Pointer theReceiver, Pointer theSelector,Object arg, Object arg2, Object arg3, Object arg4);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy