ENV_InitIter

C Specification

#include <nitro/env.h>
void ENV_InitIter( ENVResourceIter* iter );
  

Arguments

iter The resource iterator.

Return Values

None.

Description

This function initializes the resource iterator used to search for resources with class names and member names.

Iterators used in the function ENV_SearchByClass() to search for resources by class name or the function ENV_SearchByMember() to search for resources by member name must be initialized each time with this function.

The other search functions are ENV_SearchByType(), which searches by resource type, and ENV_SearchByPartialName(), which searches by character strings contained in the resource name.

See Also

ENV_Init, ENV_SearchByClass, ENV_SearchByMember
ENV_SearchByType, ENV_SearchByPartialName

Revision History

08/30/2005 Added details.
08/18/2005 Initial version.