|
mmioRead
The mmioRead function reads a specified number of bytes from a file opened by using the mmioOpen function.
LONG mmioRead(
HMMIO hmmio,
|
| HPSTR pch,
|
| LONG cch
|
| );
|
|
Parameters
hmmio
File handle of the file to be read.
pch
Address of a buffer to contain the data read from the file.
cch
Number of bytes to read from the file.
Return Values
Returns the number of bytes actually read. If the end of the file has been
reached and no more bytes can be read, the return value is 0. If there is an error
reading from the file, the return value is 1.
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
|