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
It's a void pointer. See this article for details:
http://msdn.microsoft.com/en-us/library/y31yhkeb%28VS.80%29.aspx
And you can take a look at this SO question for details on how to implement it in C#:
How to declare a void pointer in C#
On a side note, that method should be marked as unsafe if it's not.