public CallbackInvoker(CallbackInfo cbInfo) { this.functionInfo = new NativeFunctionInfo( cbInfo.getRuntime(), cbInfo.getReturnType(), cbInfo.getParameterTypes(), cbInfo.isStdcall() ? CallingConvention.STDCALL : CallingConvention.DEFAULT); }
public CallbackDataConverter(CallbackInfo cbInfo) { this.callbackFactory = CallbackManager.getInstance().getCallbackFactory(cbInfo.getRuntime(), cbInfo); this.functionInfo = new NativeFunctionInfo( cbInfo.getRuntime(), cbInfo.getReturnType(), cbInfo.getParameterTypes(), cbInfo.isStdcall() ? CallingConvention.STDCALL : CallingConvention.DEFAULT); }
public CallbackInvoker(CallbackInfo cbInfo) { this.returnType = cbInfo.getReturnType(); this.parameterTypes = cbInfo.getParameterTypes(); }