The _lread function reads data from the specified file. This function is provided for compatibility with 16-bit versions of Windows. Win32-based applications should use the ReadFile function.
UINT _lread(
HFILE hFile, |
// handle to file |
LPVOID lpBuffer, |
// pointer to buffer for read data |
UINT uBytes |
// length, in bytes, of data buffer |
); |
The return value indicates the number of bytes actually read from the file. If the number of bytes read is less than uBytes, the function has reached the end of file (EOF) before reading the specified number of bytes.
If the function fails, the return value is HFILE_ERROR. To get extended error information, call GetLastError.
If you are attempting to read from a floppy drive that does not have a floppy disk, the system displays a message box prompting the user to retry the operation. To prevent the system from displaying this message box, call the SetErrorMode function with SEM_NOOPENFILEERRORBOX.
_lwrite, ReadFile, SetErrorMode
file: /Techref/os/win/api/win32/func/src/f00_6.htm, 2KB, , updated: 2000/4/7 11:19, local time: 2024/11/4 16:19,
3.15.141.184:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.org/Techref/os/win/api/win32/func/src/f00_6.htm"> _lread</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to massmind.org! |
.