Пример #1
0
 /// <summary>
 /// The AVIStreamRelease function decrements the reference count of an AVI stream interface handle,
 /// and closes the stream if the count reaches zero. This function supersedes the obsolete AVIStreamClose function.
 /// </summary>
 /// <param name="aviStream">Handle to an open stream.</param>
 /// <returns>Returns the current reference count of the stream. This value should be used only for debugging purposes.
 /// The argument aviStream is a pointer to an IAVIStream interface.</returns>
 public static int AVIStreamRelease(IntPtr aviStream)
 {
     return(Native.AVIStreamRelease(aviStream));
 }