status = ErrorReport(error_code, type, arg1, device)
D0 D1 D2 D3 D4
BOOL ErrorReport(LONG, LONG, ULONG, struct MsgPort *)
Based on the request type, this function formats the appropriate requester to be displayed. If the code is not understood, it returns DOSTRUE immediately. Returns DOSTRUE if the user selects CANCEL or if the attempt to put up the requester fails, or if the Process pr_WindowPtr is -1. Returns FALSE if the user selects Retry. The function will retry on DISKINSERTED for appropriate error codes. These return values are the opposite of what AutoRequest returns.
This function is supposed to set
IoErr() to code before returning. See the BUGS section for limitations and workarounds.
ErrorReport() is supposed to set
IoErr() to error_code before returning. In V36-V47.26 it would only set
IoErr() to error_code for the error codes listed in the INPUTS section. For all other codes, the
IoErr() status prior to calling ErrorReport() would persist.
If you need to be sure that the
IoErr() return value matches the error code you pass to ErrorReport() in case the status returned is not 0 (0 means Retry), call
SetIoErr(error_code) prior to calling ErrorReport().
ErrorReport() cannot be called from a Task because it assumes that is getting called from a Process.