Iterators
status = SE_InitializeComponentIterator
global_directly_attach_table_components,
global_process_inheritance,
global_transform_locations,
global_follow_model_instances,
global_evaluate_static_control_links,
global_select_parameters_ptr,
global_traversal_order_parameters_ptr,
global_general_traversal_pattern,
if (status != SE_SUCCESS)
SE_ProcessError(SE_FATAL, "process_object",
"Can't initialize component iterator");
status = SE_GetNextObject(iterator, &next_object, &next_link_object);
while (status == SE_SUCCESS)
process_object(next_object,next_link_object);
status = SE_GetNextObject(iterator, &next_object, &next_link_object);
SE_FreeIterator(iterator);