[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Prototype for the safecall error handler
Source position: systemh.inc line 1579
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 |