Hi! I have a shared library (dll created in C++) that I want to access with Call Library Function. One of the function in this library needs a pointer to a memory buffer as an input parameter in the following way:
long SetData(unsigned char *pbyData, unsigned short int *wDataLength); - The parameter pbyData (type U8) points to a buffer that contains an array (type U8); - wDataLength (int32) is the length of that array. What should I connect on the input of this function? Let's say I have the array I want to feed in into this function, how do I do that? Thanks in advance, Ivan
