class Dir::Structs::REPARSE_JDATA_BUFFER
I fudge a bit, assuming a MountPointReparseBuffer
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/win32/dir/structs.rb, line 33 def header_size FFI::Type::ULONG.size + FFI::Type::USHORT.size + FFI::Type::USHORT.size end