SynopsisReturns the next URL found in the access limit table after the given URL. Prototype#include "um.h" char_t *umGetNextAccessLimit(char_t * lastAccessLimit); Parameters
DescriptionThe returned string is a pointer to the data stored in the access limit table. Return ValueumGetNextAccessLimit returns a pointer to the URL, or a NULL on error. Examplechar_t *url = umGetFirstAccessLimit(); while (url) { url = umGetNextAccessLimit(url); } See Also |