Difference between revisions of "Lua:createFoundList"
Jump to navigation
Jump to search
m (Syntax Highlighting.) |
m (Added related function template.) |
||
| Line 30: | Line 30: | ||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| + | |||
| + | {{Creation}} | ||
Latest revision as of 23:56, 26 June 2026
Creates a FoundList for a MemScan object.
Call initialize() after the scan has finished to open its result file for reading.
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| memscan | MemScan | Completed memory scan whose result file the FoundList will read. |
Returns[edit]
FoundList — The created result-list reader.
Examples[edit]
1 local scan = createMemScan()
2 -- Configure and complete the scan first.
3 local found = createFoundList(scan)
4 found.initialize()
5 print(found.Count)