Reference: IVEFatalHandler

Overview

In C, IVEFatalHandler is the prototype for the callback routine registered with IVESetFatalHandler. Such a routine is called when IVEReportFatal is called. It is expected that the routine does not return.

Prototype (C)

typedef void (*IVEFatalHandler)(const char* message, size_t length)

Parameters

message
message is a message of length bytes which the routine is expected to display or log in some manner. message may not be terminated by a null character.
length
length is the number of bytes in message.

Cross references

IVESetFatalHandler, IVEGetFatalHandler, and IVEReportFatal


| categories | alphabetical |


modified May 7, 2002

Eric Branlund (eric@msg.ucsf.edu)