wtime2time(wtime)
Convert 64-bit FILETIME integer into Time object.
# File ext/dl/win32/lib/win32/registry.rb, line 356 def self.wtime2time(wtime) Time.at((wtime - 116444736000000000) / 10000000) end