Returns the status of the last STEP File read operation, i.e. the last invocation of the edmiReadStepFile function.
Related function: edmiReadStepFile
Header:
#include "sdai.h"
Prototype:
void edmiGetStepReadResults(SdaiInteger *nFatals,
SdaiInteger *nRecoveries,
SdaiInteger *nWarnings,
SdaiInteger *nInfo,
SdaiInteger *total,
SdaiInteger *nLines);
Arguments:
nFatals |
Number of fatal errors detected in last STEP File read operation. |
nRecoveries |
Number of recoverable errors detected in last STEP File read operation. |
nWarnings |
Number of warning detected in last STEP File read operation. |
nInfo |
Number of informative messages during last STEP File read operation. |
total |
Sum of <nFatals> + <nRecoveries> + <nWarnings> + <nInfo>. |
nLines |
Number of lines in last read STEP file. |
Returns:
Void.
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);
. . .