I need to make a VI whoes input will be a cluster say UUT_INFO
UUT_INFO has 3 fields SerialNo (a string), TestStatus (Bool) and Power
(double).
Now I want to restrict this VI to only accept clusters of UUT_INFO type. And
I want to make sure that from my main VI (which will call this as subVI), I
pass the cluster of right type.
Since I will be using UUT_INFO cluster in different places and different
VIs, I am thinking of using typedefs of LV. I know somewhat how to do it but
looking for some example VI which other people use. I am not clear how do I
declare a variable of UUT_INFO in my main VI, fill values and pass to subVI.
subVI may modify it and return back.
In C, I can define a structure UUT_INFO and my functions parameter will be
of UUT_IN
FO type. How do I do this LV. I don't want my subVI to take any
cluster which has 3 fields of same type & order like UUT_INFO.
vishi