mirror of
https://github.com/vxcontrol/lualibs-winapi.git
synced 2026-07-01 13:54:03 -04:00
9 lines
195 B
Lua
9 lines
195 B
Lua
require 'winapi'
|
|
t = os.clock()
|
|
winapi.sleep(200)
|
|
for i = 1,1e8 do end
|
|
P = winapi.get_current_process()
|
|
print(P:get_working_size())
|
|
print(P:get_run_times())
|
|
print((os.clock() - t)*1000)
|