Lua:getModuleSize
Jump to navigation
Jump to search
Returns the size of the given module.
Use getAddress with the module name to retrieve the module's base address.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| modulename | String | The name of the module to get the size of. |
Returns
integer — The size of the given module in bytes.
Examples
1 local moduleName = "KERNEL32.dll"
2 local moduleBase = getAddress(moduleName)
3 local moduleSize = getModuleSize(moduleName)
4
5 printf("Module base: %X", moduleBase)
6 printf("Module size: 0x%X", moduleSize)