Interface INativeFunction

All Known Implementing Classes:
JnaNativeFunction

public interface INativeFunction
The representation of a native function.
  • Field Details

    • CallingConventionCdecl

      static final Object CallingConventionCdecl
    • CallingConventionStdcall

      static final Object CallingConventionStdcall
  • Method Details

    • invoke

      <T> T invoke(Class<T> returnType, Object... objects)
      Invoke the native function.
      Parameters:
      returnType - The expected return type.
      objects - The arguments to the function
      Returns:
      The result of executing the function