Findfixup

OllyDbg Plugin API

Findfixup

If supplied address belongs to some module, function checks whether there are fixups including or exceeding this address and returns pointer to first such fixup. Otherwise, it returns NULL. Fixups are sorted in ascending order and terminated by element (0,0), so calling procedure may use returned pointer to walk through all subsequent fixups.

t_fixup *Findfixup(t_module *pmod,ulong addr);

Parameters:

pmod - optional pointer to module descriptor. If pmod is NULL, Findfixup looks for module descriptor by itself;

addr - address in memory space of debugged application where search for fixups will start.

See also: Findmodule, Finddecode, Findfileoffset, t_module