Re: Array from C function

2004-03-21 Thread Methis Elddir
On Tue, 24 Feb 2004 09:18:42 +0100, Helmut Halfmann wrote: > I have a shared library on my linux system I like to use from labview. To > exchange simple integers and strings between there are no problems. > > Now I like to get an array of integers from my library which I like to treat > as an arra

Re: Array from C function

2004-02-25 Thread Helmut Halfmann
pawel wrote: > Hello Helmut > > Problems with arrays is that you must reserve some space in memory for > them. You can do it from CINs using the "memory manager" from CIN > tools, but the easier way is to build the array in LabVIEW and pass > the pointer top the dll. Inside DLL use this pointer t

Re: Array from C function

2004-02-25 Thread pawel
Hello Helmut Problems with arrays is that you must reserve some space in memory for them. You can do it from CINs using the "memory manager" from CIN tools, but the easier way is to build the array in LabVIEW and pass the pointer top the dll. Inside DLL use this pointer to load the data to it and

Array from C function

2004-02-24 Thread Helmut Halfmann
Hallo everybody! I have a shared library on my linux system I like to use from labview. To exchange simple integers and strings between there are no problems. Now I like to get an array of integers from my library which I like to treat as an array in my VI. Has anybody an idea how to do this in