03-16-2009 04:44 PM
Hi,
I have a dll witch returns pointer to table of integers:
_declspec (dllexport) int process( char xname[], char yname[], char zname[], int DummyType,
char OcciCondOff, int size)
{
int *tab=new int[size];
...
return *tab;
}
is it possible to receive this table in LabView using Call Library Function Node? How? any other way to get the table from a function linked in dll?
Thx!
03-17-2009 06:56 AM
Hi przemmo,
My understanding that your problem is the thing that the returned value is a pointer.
I suggest you have a look at this link:
http://zone.ni.com/devzone/cda/epd/p/id/4489
Regards,
Marton
03-17-2009 07:10 AM