Returns the text associated with a DOS error code
Source position: amigados.pas line 1634
function Fault( |
code: LongInt; |
header: pCHAR; |
buffer: pCHAR; |
len: LongInt |
):LongBool; |
code: LongInt; |
header: string; |
buffer: pCHAR; |
len: LongInt |
):Boolean; |
code |
|
Error code |
header |
|
Header to output before error text |
buffer |
|
Buffer to receive error message |
len |
|
Length of buffer |
Number of characters put into buffer (may be 0)
code |
|
Error code |
header |
|
Header to output before error text |
buffer |
|
Buffer to receive error message |
len |
|
Length of buffer |
This routine obtains the error message text for the given error code. The header is prepended to the text of the error message, followed by a colon. Puts a null-terminated string for the error message into the buffer. By convention, error messages should be no longer than 80 characters (+1 for termination), and preferably no more than 60. The value returned by IoErr() is set to the code passed in. If there is no message for the error code, the message will be "Error code number".
The number of characters put into the buffer is returned, which will be 0 if the code passed in was 0.
|
Return extra information from the system |
|
|
Sets the value returned by IoErr() |
|
|
Returns the text associated with a DOS error code |