Sha256: a906b83ab8ae2acbab1cca6d648018e689cae69d24d104ec178df6f486eeace7
Contents?: true
Size: 773 Bytes
Versions: 28
Compression:
Stored size: 773 Bytes
Contents
module RubySMB module Fscc module FileInformation # The FileStandardInformation Class as defined in # [2.4.41 FileStandardInformation](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/5afa7f66-619c-48f3-955f-68c4ece704ae) class FileStandardInformation < BinData::Record CLASS_LEVEL = FileInformation::FILE_STANDARD_INFORMATION endian :little int64 :allocation_size, label: 'Allocation Size' int64 :end_of_file, label: 'End of File' uint32 :number_of_links, label: 'Number of Links' int8 :delete_pending, label: 'Delete Pending' int8 :directory, label: 'Directory' string :reserved, label: 'Reserved', length: 2 end end end end
Version data entries
28 entries across 28 versions & 1 rubygems