AVIStreamRead

[DllImport("Avifil32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.U4)]
public static extern uint AVIStreamRead(
   IntPtr pAVIStream,
   int lStart,
   int lSamples,
   IntPtr lpBuffer,
   int cbBuffer,
   IntPtr plBytes,
   IntPtr plSamples
);

Microsoft documentation: Link

Last updated