Difference between revisions of "Lua:getThreadlist"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Lua '''function''' getThreadlist(''StringList'') Fills a StringList object with the threadlist of the currently opened process. ===Function Parameters=== {|width=…')
 
(No difference)

Latest revision as of 02:10, 24 July 2018

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]