Hi,
I have invoking the "NewDll.Dll " which created using vc++. In this Dll a method return the array data following way,
BYTE NewDemoDll::Ret LiveImg()
{
return bufferData[ImageSize];
}
How can I write the code in Java to get the data from the above method?
Please help me to solve this problem.
I have invoking the "NewDll.Dll " which created using vc++. In this Dll a method return the array data following way,
BYTE NewDemoDll::Ret LiveImg()
{
return bufferData[ImageSize];
}
How can I write the code in Java to get the data from the above method?
Please help me to solve this problem.
Comment