Difference between revisions of "Lua:enumModules"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''function''' enumModules(''ProcessID'' OPTIONAL) Returns a table containing information about each module in the current process, or the specified process id Each entry is a t…')
 
(Related Functions)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[Category:Lua]]
 
'''function''' enumModules(''ProcessID'' OPTIONAL)
 
'''function''' enumModules(''ProcessID'' OPTIONAL)
  
Line 21: Line 22:
  
 
=== Related Functions ===
 
=== Related Functions ===
* [[getCommonModuleList]]
+
* [[Lua:getCommonModuleList|getCommonModuleList]]
* [[inModule]]
+
* [[Lua:inModule|inModule]]
* [[inSystemModule]]
+
* [[Lua:inSystemModule|inSystemModule]]
* [[createProcess]]
+
* [[Lua:createProcess|createProcess]]
* [[openProcess]]
+
* [[Lua:openProcess|openProcess]]
* [[getForegroundProcess]]
+
* [[Lua:getForegroundProcess|getForegroundProcess]]
* [[getOpenedProcessID]]
+
* [[Lua:getOpenedProcessID|getOpenedProcessID]]
* [[getProcessIDFromProcessName]]
+
* [[Lua:getProcessIDFromProcessName|getProcessIDFromProcessName]]
* [[pause]]
+
* [[Lua:pause|pause]]
* [[unpause]]
+
* [[Lua:unpause|unpause]]
* [[targetIs64Bit]]
+
* [[Lua:targetIs64Bit|targetIs64Bit]]
* [[getAddress]]
+
* [[Lua:getAddress|getAddress]]
* [[getNameFromAddress]]
+
* [[Lua:getNameFromAddress|getNameFromAddress]]

Latest revision as of 00:41, 25 January 2018

function enumModules(ProcessID OPTIONAL)

Returns a table containing information about each module in the current process, or the specified process id Each entry is a table with fields.

Function Parameters[edit]

Parameter Type Description
ProcessID integer The process id to use insted of current process


See also[edit]

Related Functions[edit]