I'm making a program and I need to disable all other functions except for print. Is there a way to list out all the functions and APIs?
[Solved] List out all functions and APIs
Started by lieudusty, Feb 02 2013 07:03 PM
2 replies to this topic
#1
Posted 02 February 2013 - 07:03 PM
Hi everyone! 
I'm making a program and I need to disable all other functions except for print. Is there a way to list out all the functions and APIs?
I'm making a program and I need to disable all other functions except for print. Is there a way to list out all the functions and APIs?
#2
Posted 02 February 2013 - 07:43 PM
for i = 0, 1 do
for k, v in pairs(getfenv(i)) do
print(k .. " " .. v)
end
end
EDIT: Improved it slightly... xD
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users












