Latest available version: IDA and decompilers v8.4.240320sp1 see all releases
Hex-Rays logo State-of-the-art binary code analysis tools
email icon
// Enumerate process modules
// These function return the module base address

long get_first_module(); long get_next_module(long base);

// Get process module name // base - the base address of the module // returns: required info

string get_module_name(long base);

// Get process module size // base - the base address of the module // returns: required info or -1

long get_module_size(long base);

Index | Previous topic | Next topic