I have a global variable array of numbers in a CVI DLL that I want to pass into a local variable numeric array I created in TestStand. The "intuitive approach" is not working:
void myFunction (int *myArray[10])
{
*myArrary = globalVariableMyArray;
}
TestStand errors out during runtime with a message that either the function parameters are not defined or else it doesn't recognize the datatype.
Any ideas?