Findimportbyname

OllyDbg Plugin API

Findimportbyname

Searches for name of type NM_IMPORT in the specified range. If name is found, returns its address, otherwise returns 0. If name contains no module prefix, routine searches for import name with any module prefix. Attention, this function is very slow, it searches name table sequentially!

ulong Findimportbyname(char *name,ulong addr0,ulong addr1);

Parameters:

name - pointer to output buffer of length at least TEXTLEN characters;

addr0 - start of address range (included);

addr1 - end of address range (not included).

See also: Findname, Findlabel, Findlabelbyname