Lua:getThreadlist

From Cheat Engine
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=…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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


See also[edit]

Related Functions[edit]