Esempio n. 1
0
 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);
 }