KernRead: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
"KernOpen()", "KernClose()", "KernRead()" are functions from KEE32 intended to read text files with settings during a boot time, such as "Protocol.ini" | "[[KernOpen]]()", "[[KernClose]]()", "KernRead()" are functions from KEE32 intended to read text files with settings during a boot time, such as "Protocol.ini" | ||
APIRET APIENTRY KernReadFileAt(KEEhfile khfd,PVOID buf, QWORD off, ULONG nbytes, PULONG nread); | |||
---- | ---- | ||
| Line 5: | Line 9: | ||
KernRead is a function that is used to read data from a file or other input stream. It is part of the OS/2 kernel's input/output (I/O) system and is used by programs to read data from files, pipes, sockets, and other types of input streams. KernRead takes a handle to an input stream and a buffer, and it reads a specified number of bytes from the stream into the buffer. It returns the number of bytes that were actually read, or an error code if an error occurred. KernRead is often used in conjunction with other I/O functions, such as KernOpen and KernClose, to perform input and output operations on files and other types of streams. | KernRead is a function that is used to read data from a file or other input stream. It is part of the OS/2 kernel's input/output (I/O) system and is used by programs to read data from files, pipes, sockets, and other types of input streams. KernRead takes a handle to an input stream and a buffer, and it reads a specified number of bytes from the stream into the buffer. It returns the number of bytes that were actually read, or an error code if an error occurred. KernRead is often used in conjunction with other I/O functions, such as KernOpen and KernClose, to perform input and output operations on files and other types of streams. | ||
[[Category:KEE]] | [[Category:KEE]] | ||
[[Category:Undocumented]] | [[Category:Undocumented]] | ||
Latest revision as of 18:59, 3 November 2025
"KernOpen()", "KernClose()", "KernRead()" are functions from KEE32 intended to read text files with settings during a boot time, such as "Protocol.ini"
APIRET APIENTRY KernReadFileAt(KEEhfile khfd,PVOID buf, QWORD off, ULONG nbytes, PULONG nread);
- AI Generated
KernRead is a function that is used to read data from a file or other input stream. It is part of the OS/2 kernel's input/output (I/O) system and is used by programs to read data from files, pipes, sockets, and other types of input streams. KernRead takes a handle to an input stream and a buffer, and it reads a specified number of bytes from the stream into the buffer. It returns the number of bytes that were actually read, or an error code if an error occurred. KernRead is often used in conjunction with other I/O functions, such as KernOpen and KernClose, to perform input and output operations on files and other types of streams.