Display Classes of All Objects
/* Process Object Continued */
while(SE_GetNextObject(iterator, &next_object, &next_link_object) == SE_SUCCESS)
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);
SE_FreeIterator(iterator);