|
AVIFileReadData
The AVIFileReadData function reads optional header data that applies to the entire file, such as
author or copyright information.
STDAPI AVIFileReadData(
PAVIFILE pfile,
|
| DWORD ckid,
|
| LPVOID lpData,
|
| LONG * lpcbData
|
| );
|
|
Parameters
pfile
Handle of an open AVI file.
ckid
RIFF chunk identifier (four-character code) of the data.
lpData
Address of the buffer used to return the data read.
lpcbData
Address of a location indicating the size of the memory block referenced by lpData. If the data is read successfully, the value is changed to indicate the
amount of data read.
Return Values
Returns zero if successful or an error otherwise. The return value
AVIERR_NODATA indicates that data with the requested chunk identifier does not exist.
Remarks
The optional header information is custom and does not have a set format.
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
|