API:END FUNCTION
Aus WARWiki
Keine Beschreibung verfügbar.
Nutzung
API:END FUNCTION()
Diese Funktion übernimmt keine Argumente.
Diese Funktion gibt keine Werte zurück.
Source Code
function END_FUNCTION(event, line)
local info = debug.getinfo(2)
local s = info.short_src
if info.name ~=nil then
local string = towstring("Exiting function: "..s.."."..info.name)
LogLuaMessage( "Lua", SystemData.UiLogFilters.FUNCTION, string )
else
if s ~= nil then
local string = towstring("Exiting unknown function: "..s)
LogLuaMessage( "Lua", SystemData.UiLogFilters.FUNCTION, string )
end
end
end