03-18-2008 08:32 AM
03-19-2008 07:53 AM
I'm trying to use a labview DLL (which I can't modify since I've no access to the source) in CVI. The function I use needs 1 LStrHandle as input and 2 LStrHandle as output. But I'm getting the following error message when I'm executing the function :
"error #3: "memory.cpp", line 563, labview 6.1"
I've tried to allocate memory to the handle but I'm not sure at all what I'm doing (when not doing this, I receive a general protection error) :
hraw = (LStr**)DSNewHandle(sizeof(LStr));
hout = (LStr**)DSNewHandle(sizeof(LStr));
houtp = (LStr**)DSNewHandle(sizeof(LStr));