...
Code Block | ||||
---|---|---|---|---|
| ||||
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
...
Type | Name | Comment |
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
...
Code Block | ||
---|---|---|
| ||
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 (Content by label) | ||||||
---|---|---|---|---|---|---|
|