Findsorteddatarange

OllyDbg Plugin API

Findsorteddatarange

Searches for the first element of sorted data containing address within the specified range. Returns pointer to found item on success and NULL on error or when there is no such item. Returned pointer is valid till the next operation that adds or removes data. Do not change address or size of element, this may lead to severe data integrity problems.

void* Findsorteddatarange(t_sorted *sd,ulong addr0,ulong addr1);

Parameters:

sd - pointer to initialized descriptor of sorted data;

addr0 - start of address range in the address space of specified sorted data (included);

addr1 - end of address range in the address space of specified sorted data (not included).

See also: Findsorteddata, Findsorteddataindex, Getsortedbyselection