Sha256: 99b23bc4ee119c3c06ee6b3887191db43e6a4c26a5813181d29d17879189170d
Contents?: true
Size: 1009 Bytes
Versions: 35
Compression:
Stored size: 1009 Bytes
Contents
module RubySMB module Fscc module FileInformation # The FileNetworkOpenInformation Class as defined in # [2.4.29 FileNetworkOpenInformation](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/26d261db-58d1-4513-a548-074448cbb146) class FileNetworkOpenInformation < BinData::Record CLASS_LEVEL = FileInformation::FILE_NETWORK_OPEN_INFORMATION endian :little file_time :create_time, label: 'Create Time' file_time :last_access, label: 'Last Accessed Time' file_time :last_write, label: 'Last Write Time' file_time :last_change, label: 'Last Modified Time' int64 :allocation_size, label: 'Allocated Size' int64 :end_of_file, label: 'End of File' file_attributes :file_attributes, label: 'File Attributes' uint32 :reserved, label: 'Reserved Space' end end end end
Version data entries
35 entries across 35 versions & 1 rubygems