ODBG_Plugindata

OllyDbg Plugin API

ODBG_Plugindata

Mandatory callback function that must be present in any valid OllyDbg plugin. It must fill in plugin name and return version of plugin interface (constant PLUGIN_VERSION). If function is absent, or version is not compatible, plugin will be not installed. Short name identifies plugin in OllyDbg. This name is limited to 31 alphanumerical characters or spaces followed by terminating null character. To keep life easy for users, name should be descriptive and correlate with the name of DLL.

int ODBG_Plugindata(char *shortname);

Parameters:

shortname - pointer to buffer of length at least 32 characters that receives name of plugin. This name may include spaces and punctuators but no special symbols.