Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecpp
themeConfluence
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

...

 

Code Block
languagecpp
 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)
showLabelsfalse
showSpacefalse
cqllabel = "model" and parent = "6062220"