|
AVIStreamEnd
The AVIStreamEnd macro calculates the sample associated with the end of a stream.
AVIStreamEnd(
Parameters
pavi
Handle of an open stream.
Return Values
Returns the sample number associated with the end of a stream, or, if an error
occurs, one less than the first sample or one less than the stream length.
Remarks
The sample number returned is not a valid sample number for reading data. It
represents the end of the file. (The end of the file is equal to the start of
the file plus its length.)
The AVIStreamEnd macro is defined as follows:
#define AVIStreamEnd(pavi) \
(AVIStreamStart(pavi) + AVIStreamLength(pavi))
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
TMS Scripter Studio Pro components for Delphi/C++Builder
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
|