edmiGetStepReadResults

void edmiGetStepReadResults(SdaiInteger *nFatals,
                             SdaiInteger *nRecoveries, 
                             SdaiInteger *nWarnings, 
                             SdaiInteger *nInfo, 
                             SdaiInteger *total, 
                             SdaiInteger *nLines);

Returns the status of the last STEP File read operation, i.e. the last invocation of the edmiReadStepFile function.

Arguments


TypeNameComment
SdaiInteger

nFatals

Number of fatal errors detected in last STEP File read operation.

SdaiInteger

nRecoveries

Number of recoverable errors detected in last STEP File read operation.

SdaiInteger

nWarnings

Number of warning detected in last STEP File read operation.

SdaiInteger

nInfo

Number of informative messages during last STEP File read operation.

SdaiInteger

total

Sum of <nFatals> + <nRecoveries> + <nWarnings> + <nInfo>.

SdaiInteger

nLines

Number of lines in last read STEP file.

Return Value


 

Options


 

Example


 

 SdaiInteger nFatals, nRecoveries, nWarnings, nInfo, total, nLines;
 . . .
 edmiGetStepReadResults(&nFatals,
 &nRecoveries, 
 &nWarnings, 
 &nInfo, 
 &total, 
 &nLines); 
 printf("\n\n\nFatal errors...........: %ld", nFatals); printf("\nRecoverable errors.....: %ld", nRecoveries);
 printf("\nWarnings...............: %ld", nWarnings); printf("\nInfo...................: %ld", nInfo);
 printf("\ntotal..................: %ld", total); 
 printf("\nLines..................: %ld\n", nLines);
 . . .

 

See also

Filter by label

There are no items with the selected labels at this time.

Â