Object IDs
//If this transmittal supports object IDs and we were given a starting
//object ID, then start at the given start object.
if ((global_id_support != SE_NO_IDS) && (start_obj_id != NULL))
// str_object_id was passed in by user
if ((status = SE_StringToObjectID(transmittal, &str_object_id,
&object_id)) != SE_SUCCESS)
else if ((status=SE_GetObjectForID(object_id, &start_obj))
process_object(1, store, start_obj,
NULL, SE_TRUE, transmittal, global_search_filter );
SE_FreeObjectID(object_id);
SE_FreeObject(start_obj);