class Puppet::FFI::Windows::Structs::REPARSE_JDATA_BUFFER

REPARSE_JDATA_BUFFER

Public Instance Methods

header_size() click to toggle source

The REPARSE_DATA_BUFFER_HEADER_SIZE which is calculated as:

sizeof(ReparseTag) + sizeof(ReparseDataLength) + sizeof(Reserved)

    # File lib/puppet/ffi/windows/structs.rb
333 def header_size
334   FFI::Type::ULONG.size + FFI::Type::USHORT.size + FFI::Type::USHORT.size
335 end