ISAPIASSERT

ISAPIASSERT( booleanExpression )

Parameters

booleanExpression

Specifies an expression (including pointer values) that evaluates to nonzero or 0.

Remarks

Works exactly like the MFC macro ASSERT. Evaluates its argument. If the result is 0, the macro prints a diagnostic message and aborts the program. If the condition is nonzero, it does nothing.

The diagnostic message has the form

assertion failed in file <name> in line <num>

where name is the name of the source file, and num is the line number of the assertion that failed in the source file.

In the release version of your application, ISAPIASSERT does not evaluate the expression and thus will not interrupt the program. If the expression must be evaluated regardless of environment, use the ISAPIVERIFY macro in place of ISAPIASSERT. ISAPIASSERT is available only in the debug version of your application.

ISAPI applications do not have to use MFC. If MFC is not linked to your application, ISAPIASSERT provides the same ASSERT functionality. If your application is linked to the MFC, ISAPIASSERT simply calls MFC's ASSERT.

See Also   ISAPITRACE, ISAPITRACE0, ISAPITRACE1, ISAPITRACE2, ISAPITRACE3, ISAPIVERIFY