Difference between revisions of "Lua:inSystemModule"
								
								Jump to navigation
				Jump to search
				
				
		
		| m (Reverted edits by 70.162.178.44 (Talk) to last revision by Dark Byte) |  (→Related Functions) | ||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| + | [[Category:Lua]] | ||
| '''function''' inSystemModule(''address'') | '''function''' inSystemModule(''address'') | ||
| − | Returns true if the provided address resides inside a module  | + | Returns true if the provided address resides inside a module (example: .exe or .dll) stored inside the system's Windows folder (usually C:\Windows\). | 
| Line 16: | Line 17: | ||
| − | ==  | + | {{LuaSeeAlso}} | 
| − | * [[inModule | + | |
| − | + | === Related Functions === | |
| + | * [[Lua:inModule|inModule]] | ||
Latest revision as of 00:45, 25 January 2018
function inSystemModule(address)
Returns true if the provided address resides inside a module (example: .exe or .dll) stored inside the system's Windows folder (usually C:\Windows\).
Function Parameters[edit]
| Parameter | Type | Description | 
|---|---|---|
| address | CEAddressString | The address to look up | 

