FatalExit

  VOID FatalExit(nExitCode)    
  int nExitCode; /* error code */

The FatalExit function transfers execution control to the debugger. The behavior thereafter is specific to the debugger being used.

An application should call this function only for debugging purposes; it should not call the function in a retail version of the application. Calling this function in the retail version will terminate the application.

Parameters

nExitCode

Specifies the error code associated with this exit.

Return Value

This function does not return a value.

Comments

The FatalExit function is for debugging only.

See Also

FatalAppExit