git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12124 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
419 B
OpenEdge ABL
Executable file
13 lines
419 B
OpenEdge ABL
Executable file
%module matrixlib
|
|
%include matrix.i
|
|
|
|
|
|
|
|
|
|
%apply (double* matrixAsInput,int rows,int cols){(double *first, int nbRow, int nbCol)}
|
|
%apply (double** matrixAsArgOutput,int* rows,int* cols){(double **result,int* nbRowOut,int* nbColOut)}
|
|
%inline {
|
|
extern void sumitems_argoutput(double *first, int nbRow, int nbCol,double **result,int* nbRowOut,int* nbColOut);
|
|
extern double* getValues(int *numberOfRow, int *numberOfCol);
|
|
}
|
|
|