File size: 1,968 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
-- @cstyle thread CreateRealTimeThread(function exec)
function CreateRealTimeThread(exec, ...)
end
-- @cstyle thread CreateGameTimeThread(function exec)
function CreateGameTimeThread(exec, ...)
end
-- @cstyle thread CreateMapRealTimeThread(function exec)
function CreateMapRealTimeThread(exec, ...)
end
-- @cstyle thread IsRealTimeThread(thread thread)
function IsRealTimeThread(thread)
end
-- @cstyle thread IsGameTimeThread(thread thread)
function IsGameTimeThread(thread)
end
-- @cstyle int RealTime()
-- @return int, Current real time in ms
function RealTime()
end
-- @cstyle int GameTime()
-- @return int, Current game time in ms
function GameTime()
end
-- @cstyle int now()
-- @return int, Current time, depending on the current thread type, in ms
function now()
end
-- @cstyle thread CurrentThread()
function CurrentThread()
end
-- @cstyle bool IsValidThread(thread thread)
-- @return bool, True if the given thread is alive
function IsValidThread(thread)
end
-- @cstyle string GetThreadStatus(thread thread)
function GetThreadStatus(thread)
end
-- @cstyle bool CanYield()
function CanYield()
end
-- @cstyle void Sleep(int time)
-- @param time int, Time to sleep in ms.
function Sleep(time)
end
-- @cstyle void InterruptAdvance()
function InterruptAdvance()
end
-- @cstyle void DeleteThread(thread thread, bool allow_if_current)
function DeleteThread(thread, allow_if_current)
end
-- Wait the current thread to be woken up with Wakeup
-- @cstyle bool WaitWakeup(int timeout)
-- @param timeout int, Time to wait in ms.
-- @return bool, True if awaken before the time expires
function WaitWakeup(timeout)
end
-- Wakes up a thread put to sleep with WaitWakeup
-- @cstyle void Wakeup(thread thread, ...)
function Wakeup(thread, ...)
end
-- Wait for a specific message to be fired
-- @cstyle template<class T> bool WaitMsg(T msg, int timeout)
-- @return bool, True if message has been fired before the time expires
function WaitMsg(msg, timeout)
end |