Display Classes of All Objects
/* Process Object Continued */
status = SE_GetNextObject(iterator, &next_object, &next_link_object);
while(status == SE_SUCCESS || status == SE_DIFFERENT_TRANSMITTAL)
ProcessObject(next_object, next_link_object, search_filter);
SE_FreeObject(next_object);
/* If there is no link object, GetNextObject will set
// next_link_object to NULL.
if(next_link_object != NULL)
SE_FreeObject(next_link_object);
status = SE_GetNextObject(iterator, &next_object, &next_link_object);
SE_FreeIterator(iterator);