Prototype for the safecall error handler.
Source position: systemh.inc line 1773
type TSafeCallErrorProc = procedure( |
error: HRESULT; |
addr: pointer |
); |
error |
|
Error number. |
addr |
|
Address where error occurred. |
Prototype of a safecall error handler routine. Error is the error number (passed by the Windows operating system) and Addr is the address where the error occurred.
|
Error handler for safecall errors. |