Skip navigation links
JNA API 5.3.1
com.sun.jna.platform.win32

Class Ntifs.SymbolicLinkReparseBuffer

    • Field Detail

      • SubstituteNameOffset

        public short SubstituteNameOffset
        Offset, in bytes, of the substitute name string in the PathBuffer array. Note that this offset must be divided by sizeof(WCHAR) to get the array index.
      • SubstituteNameLength

        public short SubstituteNameLength
        Length, in bytes, of the substitute name string. If this string is NULL-terminated, SubstituteNameLength does not include space for the UNICODE_NULL character.
      • PrintNameOffset

        public short PrintNameOffset
        Offset, in bytes, of the print name string in the PathBuffer array. Note that this offset must be divided by sizeof(WCHAR) to get the array index.
      • PrintNameLength

        public short PrintNameLength
        Length, in bytes, of the print name string. If this string is NULL-terminated, PrintNameLength does not include space for the UNICODE_NULL character.
      • Flags

        public int Flags
        Used to indicate if the given symbolic link is an absolute or relative symbolic link. If Flags contains SYMLINK_FLAG_RELATIVE, the symbolic link contained in the PathBuffer array (at offset SubstitueNameOffset) is processed as a relative symbolic link; otherwise, it is processed as an absolute symbolic link.
      • PathBuffer

        public char[] PathBuffer
        First character of the path string. This is followed in memory by the remainder of the string. The path string contains the substitute name string and print name string. The substitute name and print name strings can appear in any order in the PathBuffer. (To locate the substitute name and print name strings in the PathBuffer, use the SubstituteNameOffset, SubstituteNameLength, PrintNameOffset, and PrintNameLength members.) NOTE: MAXIMUM_REPARSE_DATA_BUFFER_SIZE is chosen here based on documentation. Because chars are two bytes, the actual array size needs to be divided by 2
    • Constructor Detail

      • SymbolicLinkReparseBuffer

        public SymbolicLinkReparseBuffer()
      • SymbolicLinkReparseBuffer

        public SymbolicLinkReparseBuffer(Pointer memory)
      • SymbolicLinkReparseBuffer

        public SymbolicLinkReparseBuffer(java.lang.String substituteName,
                                         java.lang.String printName,
                                         int Flags)
      • SymbolicLinkReparseBuffer

        public SymbolicLinkReparseBuffer(short SubstituteNameOffset,
                                         short SubstituteNameLength,
                                         short PrintNameOffset,
                                         short PrintNameLength,
                                         int Flags,
                                         java.lang.String PathBuffer)
    • Method Detail

      • sizeOf

        public static int sizeOf()
      • getPrintName

        public java.lang.String getPrintName()
        Returns:
        the print name in a String
      • getSubstituteName

        public java.lang.String getSubstituteName()
        Returns:
        the substitute name in a String
JNA API 5.3.1

Copyright © 2007-2018 Timothy Wall. All Rights Reserved.