Lua:getThreadlist

From Cheat Engine
Jump to navigation Jump to search

function getThreadlist(StringList)

Fills a StringList object with the threadlist of the currently opened process.


Function Parameters

Parameter Type Description
StringList Stringlist The StringList to fill

Examples

local l = createStringlist()
getThreadlist(l)
for i = 1, l.Count do
	print(l[i - 1])
end


See also

Related Functions