hi ,
I'm using some imported functions from a DLL (call library function node), but the variables are of the following type , MyStruct:
typedef struct
{
MySubstructure *Values;
long length;
} MyStruct;
typedef struct
{
MyUnion parameteters;
long type;
}MySubstructure;
typedef union
{
long l;
double f;
char *s;
}MyUnion;
How do I use this kind of structure (linked list) in Labview, or is this not possible ?
Thanks in advance
regards ,
Bart Carlens