#include <nitro/env.h>
ENVResource* ENV_SetLastResourceSetForIter( ENVResourceIter* iter );
iter | The resource iterator. |
None.
Gets the resource array for the last resource that was searched for using the resource iterator in the resource search.
ENV_SearchByClass, ENV_SearchByMember, ENV_SearchByType, ENV_SearchByPartialName
This is used for learning which resource belongs to a given resource array after a list of resources are obtained using the above-mentioned functions once they have searched the resources using the resource iterators.
Immediately after initializing the iterator with ENV_InitIter()
, it returns the first array on the list of resource arrays registered within the system.
When the search reaches the end, NULL is returned.
ENV_Init, ENV_InitIter
ENV_SearchByClass, ENV_SearchByMember, ENV_SearchByType, ENV_SearchByPartialName
08/29/2005 Initial version.