Hello all,
I have the following problem. I'm using an external DLL in LabVIEW and one of the functions require a structure as an input parameter.
Here's the structure:
struct Pippo {
DWORD ipAddress;
DWORD centerFrequency;
Pluto* array
};
struct Pluto {
DWORD size
DWORD address
}
The function prototype is the following:
myfunction( Pippo input )
I've used the Import Library Wizard from LabVIEW and it extract every field from the structures. So what I get as the function inputs is:
ipAddress,centerFrequency,size,address.
So basically the array is not treated and I get the 109