#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 obtaining which resource belongs to which resource array after the resources are obtained with the above-mentioned functions that searches 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.