/*
 * ENUM: SE_FIELD_RANGE_MATCHING_ENUM
 *
 *   For selections that have ranges (Level of Detail, State, and Time), this
 *   is used in the SE_HIERARCHY_SELECT_PARAMETERS struct to determine how to
 *   test the fields of a branch's link object when attempting to 'match' them
 *   against the values defined in a search range.
 */
typedef enum
{
SE_BRANCH_RANGE_MUST_MATCH_SEARCH_RANGE_EXACTLY,
SE_BRANCH_RANGE_MUST_BE_FULLY_CONTAINED_BY_SEARCH_RANGE,
SE_BRANCH_RANGE_INTERSECTS_SEARCH_RANGE
} SE_FIELD_RANGE_MATCHING_ENUM;
Prev: SE_ERROR_HANDLING_FUNCTION_SIGNATURE. Next: SE_GENERAL_HIERARCHY_ORDER. Up:Index