Sha256: 4a441341bdcbf19636d659737bd878f3c7aee8a92a50c8bd0a505a3f485f1474
Contents?: true
Size: 730 Bytes
Versions: 36
Compression:
Stored size: 730 Bytes
Contents
module RubySMB module Fscc module FileInformation # The FileNamesInformation Class as defined in # [2.4.26 FileNamesInformation](https://msdn.microsoft.com/en-us/library/cc232077.aspx) class FileNamesInformation < BinData::Record CLASS_LEVEL = FileInformation::FILE_NAMES_INFORMATION endian :little uint32 :next_offset, label: 'Next Entry Offset' uint32 :file_index, label: 'File Index' uint32 :file_name_length, label: 'File Name Length', initial_value: -> { file_name.do_num_bytes } string16 :file_name, label: 'File Name', read_length: -> { file_name_length } end end end end
Version data entries
36 entries across 36 versions & 1 rubygems