Sha256: 84d14ee7a07f9d58db9496d2aaa810ecd686e3e7d44577c055a6c70d919056a6
Contents?: true
Size: 642 Bytes
Versions: 28
Compression:
Stored size: 642 Bytes
Contents
module RubySMB module Fscc module FileInformation # The FileNameInformation Class as defined in # [2.4.27 FileNameInformation](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/cb30e415-54c5-4483-a346-822ea90e1e89) class FileNameInformation < BinData::Record CLASS_LEVEL = FileInformation::FILE_NAME_INFORMATION endian :little 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
28 entries across 28 versions & 1 rubygems