Sha256: b3dc3175d0d19ccfe3080da901563eafcef2948bd4727e7530f2ab5e3a410fd5

Contents?: true

Size: 645 Bytes

Versions: 1

Compression:

Stored size: 645 Bytes

Contents

module Windows
  module File
    module Structs
      class FILETIME < FFI::Struct
        layout(:dwLowDateTime, :ulong, :dwHighDateTime, :ulong)
      end

      class WIN32_FIND_DATA < FFI::Struct
        layout(
          :dwFileAttributes, :ulong,
          :ftCreationTime, FILETIME,
          :ftLastAccessTime, FILETIME,
          :ftLastWriteTime, FILETIME,
          :nFileSizeHigh, :ulong,
          :nFileSizeLow, :ulong,
          :dwReserved0, :ulong,
          :dwReserved1, :ulong,
          :cFileName, [:uint8, 260*2],
          :cAlternateFileName, [:uint8, 14*2]
        )
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
win32-file-0.7.3 lib/win32/file/structs.rb