Share

acad__assert

C++

void acad__assert(
    const ACHAR *, 
    const ACHAR *, 
    int
);

File

acutads.h

Description

This function will convert the expression argument into C source code and evaluate it. If it results in a false value, then a standard assert dialog will be displayed with the expression string shown to the right of "Failed:", the fileName string will be displayed to the right of "File:", and the lineNumber will be displayed to the right of "Line:".

Parameters

Parameters Description
unnamed1 Boolean expression in string form
unnamed2 Boolean expression in string form
unnamed3 Source code line number of the assert

Was this information helpful?