|
mmioSeek
The mmioSeek function changes the current file position in a file opened by using the mmioOpen function.
LONG mmioSeek(
HMMIO hmmio,
|
| LONG lOffset,
|
| int iOrigin
|
| );
|
|
Parameters
hmmio
File handle of the file to seek in.
lOffset
Offset to change the file position.
iOrigin
Flags indicating how the offset specified by lOffset is interpreted. The following values are defined:
SEEK_CUR
Seeks to lOffset bytes from the current file position.
SEEK_END
Seeks to lOffset bytes from the end of the file.
SEEK_SET
Seeks to lOffset bytes from the beginning of the file.
Return Values
Returns the new file position, in bytes, relative to the beginning of the
file. If there is an error, the return value is 1.
Remarks
Seeking to an invalid location in the file, such as past the end of the file,
might not cause mmioSeek to return an error, but it might cause subsequent I/O operations on the file
to fail.
To locate the end of a file, call mmioSeek with lOffset set to zero and iOrigin set to SEEK_END.
See Also
mmioOpen
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
|