Inside my LabVIEW code I have a 2D array of U8 that I need to pass to a windows DLL.
The DLL is expecting the data as a continous block of memory by means of a void pointer. (LPVOID pBits)
I cannot immediately connect the array to the Call Library Function Node.
This will give me the error that I cannot connect and array data type to an element datatype.
I also believe this approach is wrong since I do not know how LV arrays are managed internally. The probably have some internal housekeeping stuff like the dimension size in both dimensions.
So the question is: How do I connect the 2D array to the void pointer of my array?
The void pointer expects the data from the array to be a continuous block of data.
Thanks in advance for all the help!