EditStreamCopy

The EditStreamCopy function copies an editable stream (or a portion of it) into a temporary stream.

STDAPI EditStreamCopy(
  PAVISTREAM pavi,       
  LONG * plStart,        
  LONG * plLength,       
  PAVISTREAM * ppResult  
);
 

Parameters

pavi
Handle of the stream being copied.
plStart
Starting position within the stream being copied. The starting position is returned.
plLength
Amount of data to copy from the stream referenced by pavi. The length of the copied data is returned.
ppResult
Address to contain the handle created for the new stream.

Return Values

Returns zero if successful or an error otherwise.

Remarks

The stream that is copied must be created by the CreateEditableStream function or one of the stream editing functions.

The temporary stream can be treated as any other AVI stream.

QuickInfo

  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Unsupported.
  Header: Declared in vfw.h.
  Import Library: Use vfw32.lib.

See Also

AVIFile Functions and Macros Overview, AVIFile Functions, CreateEditableStream