12-08-2007 04:01 AM
12-12-2007 11:47 AM
12-13-2007 09:01 AM
You cannot return a string as the return value of a function to TestStand, but you can return a string as a char buffer parameter.
Declare your function as follows:
void __declspec(dllexport) Read(char data[])
{
strcpy(data, "Hello");
}