Display Classes of All Objects
ProcessObject(SE_OBJECT current_object, SE_OBJECT link_object,
SE_SEARCH_FILTER search_filter)
SE_TOKEN_ENUM object_tag, link_object_tag;
SE_OBJECT next_object, next_link_object;
SE_IdentifyObject(current_object, &object_tag);
printf(“This object is a %s \n”, SE_TokenName(object_tag));
SE_IdentifyObject(link_object, &link_object_tag);
printf(“This object has a %s link object \n”,SE_TokenName(link_object_tag));
SE_InitializeComponentIterator(current_object, NULL, search_filter, SE_FALSE, SE_FALSE, SE_FALSE, SE_FALSE, SE_FALSE, NULL, NULL, SE_DEPTH_FIRST, &iterator);