Lua:getThreadlist
Revision as of 02:10, 24 July 2018 by TheyCallMeTim13 (talk | contribs) (Created page with 'Category:Lua '''function''' getThreadlist(''StringList'') Fills a StringList object with the threadlist of the currently opened process. ===Function Parameters=== {|width=…')
function getThreadlist(StringList)
Fills a StringList object with the threadlist of the currently opened process.
Function Parameters[edit]
Parameter | Type | Description |
---|---|---|
StringList | Stringlist | The StringList to fill |
Examples[edit]
local l = createStringlist() getThreadlist(l) for i = 1, l.Count do print(l[i - 1]) end