Hi,
I've a dll writen in labview version 7.1
After reading all the information I found here I'm still having problems.
I've a function in the dll that receive this argument: LStrHandle *name
I assume that name is a string and from the information I found here this is what I should do in CVI:
char str[50];
LStrHandle *name;
*name=(LStrHandle)DSNewHandle(sizeof(int32)+strlen(str)*sizeof(uChar));
memcpy(LStrBuf(**name),str,strlen(str));
LStrLen(**name)=strlen(str);
First problem: I get link error for DSNewHandle
Second problem is that I try to install labview 7.1 runtime engine and I get an error that a higher version is already installed
Thanks