Hello,
Let me preface this question with: yes, I have seen the hundreds of post out there about this but I cannot seem to solve the issue.
I have a third party C++ DLL with a function that returns a pointer to a void typedef:
typedef void * HANDLE_NAME;
I do not want to access the contents of that typedef just pass it to other functions in the DLL.
What is the proper method of configuring LabVIEW's Call Library Function Node (CLFN) to allow this pointer to be passed through LabVIEW? I have tried making the return data type of the CLFN to be unsigned/sign integers and pointer sized integers but LabVIEW always just returns error 1097 when I try to pass this point back into a DLL function. I've also tried passing by value and by pointer.