/*
 * ENUM: SE_ITR_TRAVERSAL_ENUM
 *
 *   Used to indicate the desired traversal for an iterator or function
 *   when it encounters an Inter-Transmittal Reference (ITR).
 */
typedef enum
{
SE_RESOLVE_ITR_REFERENCES, (notes)
SE_STOP_AT_ITR_REFERENCES, (notes)
SE_IGNORE_ITR_REFERENCES (notes)
} SE_ITR_TRAVERSAL_ENUM;


Enumerator Notes

SE_RESOLVE_ITR_REFERENCES

 Automatically resolve ITR references as they are encountered and
 continue to search as normal within the new transmittal.

 Note that a SEDRIS transmittal that has been opened in this way
 cannot be written to or updated. The transmittal must be
 explicitly opened for writing or modification to do this.

SE_STOP_AT_ITR_REFERENCES

 Report any ITR references as they are encountered, but do not
 resolve them.

SE_IGNORE_ITR_REFERENCES

 Ignore ITR references and act as though the transmittal were
 stand-alone, continuing to search within the current transmittal.
Prev: SE_ITERATOR. Next: SE_LEVEL_0_API_FUNCTION_ENUM. Up:Index