hello everyone
In my application, I invoke the C# DLL from my C++ code;
I call the C# method like this:
public DepthImagePixel[] CreateFilteredDepthArray(DepthImagePixel[]
depthArray, int width, int height)
So in my C++ code, I should transfer something to the parameter
depthArray.
The question comes...... What should I pass to
detphArray in the case that the depth pixel is defined as struct NUI_DEPTH_IMAGE_PIXEL in C++, and not the struct
DepthImagePixel in C#.
Wating for yours answers! Thanks
Sholee