/*
 * TYPEDEF: SE_OBJECT
 *
 *   Pointer to a SEDRIS object.  The definition of a SEDRIS object is
 *   hidden by the implementation of this API.  The user of this API simply
 *   passes in and receives back an SE_OBJECT for functions that deal
 *   with SEDRIS objects.
 *
 *   A SE_OBJECT may be resolved, unresolved or unsaved:
 *
 *     Resolved - the SE_OBJECT points to an object that is available to the
 *                SEDRIS API, i.e. the object is contained within a transmittal
 *                whose content the API can access and the application
 *                programmer has chosen to access that content - i.e., the
 *                transmittal is open.
 *
 *     Unresolved - the SE_OBJECT points to an object that the API cannot
 *                  access or the application programmer has chosen not to
 *                  access it, e.g., the object may reside in a transmittal
 *                  that is not currently open, i.e. the SE_OBJECT is an
 *                  inter-transmittal reference (ITR).
 *
 *     Unsaved - the SE_OBJECT handle is freshly created using SE_CreateObject
 *               but has not yet been added to a transmittal. When it is added
 *               to a transmittal, it will become resolved.
 *
 *   NOTE: To be available for inter-transmittal referencing (ITR), a SEDRIS
 *         object must be published.
 */
typedef struct SE_Object *SE_OBJECT;
Prev: SE_LOD_SELECT_PARAMETERS. Next: SE_OBJECT_ID. Up:Index