hello,
I'm wondering how I would send an array of clusters to my dll.
What I'm wanting to do is to create an array of clusters based on the count of "boards" that are found, so if 2 boards are found, an array of 2 elements will be created.....with the elements being LabVIEW clusters. Getting the board count is no problem, but when I try to get the information from the boards by sending my array of clusters to the dll I'm hitting a brick wall.
Here is what the dll function call looks like:
extern "C" short CCONV acq_board_info(short cnt, MyStruct_info *info);
Here is what MyStruct looks like:
struct MyStruct_board_info
{
char name[32]
short var1
short var2
short var3
short var4
short var5
char var6
char var7
long var8
long var9
long var10
long var11
char var12
char pad[3]
};
If anyone can point me in the right direction I would greatly appreciate it...also if there is any information that would help out, please ask and i will do my best to provide it. By the way.....I'm using LabVIEW 8.6
Thanks
CK