I'm looking through the source of a C# program that uses a library written in C. I came across this line and was unsure what it was:
cvbimUNSAFE.GetImageVPA ((cvbim.IMG)cvImg.Image, 0, (void**)&lpImageBits, &pVPAT);
What is an object of type void **
? I did some Google searches and could only find information about void*
, which is a pointer to a sort of catch all top level type, if I understood correctly.