我在Java中使用JNative调用C语言写的DLL,调用的DLL函数中有一个参数是双指针的,请问我该如何传值?
* int **ecg: 数据指针
* ECGspec *siginfo: 数据规格
* ECG_Output *output: 分析输出
* 返回1: OK, 0: error
/************************************************************************/
FINT ECG_Multi_Lead(int **ecg, ECGspec *siginfo, ECG_Output *output);单指针可以这样传值,但是双指针不会,请高手帮助!
        Pointer pEcgspec = new Pointer(new HeapMemoryBlock(256)); //224    
   pEcgspec.setIntAt(0, 3); 
   pEcgspec.setIntAt(4, 500);