Пример #1
0
 /// <summary>
 /// The AVIStreamInfo function obtains stream header information.
 /// </summary>
 /// <param name="pAVIStream">Handle to an open stream (pointer to an IAVIStream interface).</param>
 /// <param name="psi">Pointer to a structure to contain the stream information</param>
 /// <param name="lSize">Size, in bytes, of the structure used for psi</param>
 /// <returns>Returns zero if successful or an error otherwise</returns>
 public static int AVIStreamInfo(int pAVIStream, ref AVIStreamInfo psi, int lSize)
 {
     return(Native.AVIStreamInfo(pAVIStream, ref psi, lSize));
 }