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
In C, it represents a pointer to a void* object. In other word, when you dereference it you get a void*.
void*
I guess this is used because lpImageBits will be modified inside the function you are invoking.