Uses of Class
com.kenai.jffi.CallingConvention

Packages that use CallingConvention
com.kenai.jffi   
 

Uses of CallingConvention in com.kenai.jffi
 

Methods in com.kenai.jffi that return CallingConvention
static CallingConvention CallingConvention.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CallingConvention[] CallingConvention.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.kenai.jffi with parameters of type CallingConvention
 CallContext CallContextCache.getCallContext(Type returnType, Type[] parameterTypes, CallingConvention convention)
           
 Closure.Handle ClosureManager.newClosure(Closure closure, Type returnType, Type[] parameterTypes, CallingConvention convention)
          Wraps a java object that implements the Closure interface in a native closure.
 

Constructors in com.kenai.jffi with parameters of type CallingConvention
CallContext(Type returnType, Type[] paramTypes, CallingConvention convention)
          Creates a new instance of Function.
CallContext(Type returnType, Type[] paramTypes, CallingConvention convention, boolean saveErrno)
          Creates a new instance of Function.
Function(long address, Type returnType, Type[] paramTypes, CallingConvention convention)
          Creates a new instance of Function.
Function(long address, Type returnType, Type[] paramTypes, CallingConvention convention, boolean saveErrno)
          Creates a new instance of Function.