|
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.
See Also
CreateEditableStream
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|