Sha256: 55334f9677339b8b49f58d535b0c3cf9b5a732cc134f2d33d004d160a562c126
Contents?: true
Size: 414 Bytes
Versions: 14
Compression:
Stored size: 414 Bytes
Contents
require 'Win32API' module Windows module MSVCRT module File Stat = Win32API.new('msvcrt', '_stat', 'PP', 'I') Stat64 = Win32API.new('msvcrt', '_stat64', 'PP', 'I') def stat(path, buffer) Stat.call(path, buffer) end def stat64(path, buffer) Stat64.call(path, buffer) end end end end
Version data entries
14 entries across 14 versions & 2 rubygems