Lua:getThreadlist
Jump to navigation
Jump to search
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