ODBG_Pluginsaveudd

OllyDbg Plugin API

ODBG_Pluginsaveudd

Optional callback function. If present, OllyDbg calls it when some module requests to save module- or application-related data to .udd file. To save data to .udd file, call Pluginsaverecord for each data item that must be saved. Global, appliction-oriented data must be saved in teh main .udd file; module-relevant data must be saved in module .udd files. Save all addresses relative to the base of module so that data will be restored correctly even when module is relocated.

void ODBG_Pluginsaveudd(t_module *pmod,int ismainmodule);

Parameters:

pmod - pointer to module descriptor;

ismainmodule - flag indicating whether this is main module of debugged application (.exe).

See also: Pluginsaverecord, t_module