This is c++ code CreateImageSnapshot, (int, eImageFormat, BYTE**)
in VC++ we implementing
BYTE**
PlayerLib::CreateImageSnapshot (iPlayerRef,static_cast<eImageFormat>(lFormat),
&pBuffer);
here i need to import the dll and do the same process in c#.. Can anyone find equivalent C# code like
[DllImport("PlayerLib", SetLastError = false,
EntryPoint = "CreateImageSnapshot")]
public static extern int CreateImageSnapshot(...);
Here I need to extern the CreateImageSnapshot function and I want to know how to pass the argument
thanks in advance