AVIStreamWriteData  G65JWK 

The AVIStreamWriteData function writes optional header information to the stream.

STDAPI AVIStreamWriteData(

    PAVISTREAM pavi,

 

    DWORD ckid,

 

    LPVOID lpData,

 

    LONG cbData

 

   );

 

 

Parameters

pavi

Handle of an open stream.

ckid

Four-character code identifying the data.

lpData

Address of a buffer containing the data to write.

cbData

Number of bytes of data to write into the stream.

 

Return Values

Returns zero if successful or an error otherwise. The return value AVIERR_READONLY indicates the file was opened without write access.

Remarks

Use the AVIStreamWrite function to write the multimedia content of the stream. Use AVIFileWriteData to write data that applies to an entire file.

See Also

AVIStreamWrite, AVIFileWriteData