Versions Compared

Key

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

...

Insert excerpt
US:_r_EDMInterface
US:_r_EDMInterface
nopaneltrue

 

Options

...

  

OptionComment
optionnamecomment

 

Example

...

 

Code Block
languagecpp
EdmiError rstat;
 SdaiLogical result;
 SdaiAggr operand1, operand2;
 . . .
 If (rstat = edmiAggrValueCompare (operand1, operand2, &result)) {
 /* Error in operation */ 
 printf("\nError: %s in edmiAggrValueCompare\n", 
 edmiGetErrorText(rstat)); 
 goto error; 
 }
 switch (result) {
 case sdaiTRUE: 
 . . . /* The two aggregates are value equals */ 
 break; 
 case sdaiFALSE: 
 . . . /* The two aggregates are not value equals */ 
 break; 
 default: 
 . . . /* Unset elements in operan1 or operand2, or 
 error in operation */ 
 }
 . . .

...