09-18-2012 08:11 AM
Could anyone give me a sample of how to use function TDMS_AppendDataValues() with array of strings?
tdmsError =TDMS_AppendDataValues(phChannels[usChan], arrayofstrings, iTotalNoOfRec, TRUE);
I always get General protection exception.
Solved! Go to Solution.
09-18-2012 01:03 PM
Have a look at TDMS_AppendDataValues.
char *values[] = {"one", "two", "three", "four", "five"}; TDMS_AppendDataValues (channel, values, 5, 1);
Doesn't this example work?