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

Class Winnetwk.REMOTE_NAME_INFO

  • Direct Known Subclasses:
    Winnetwk.REMOTE_NAME_INFO.ByReference, Winnetwk.UNIVERSAL_NAME_INFO.ByReference
    Enclosing class:
    Winnetwk


    public static class Winnetwk.REMOTE_NAME_INFO
    extends Structure
    The REMOTE_NAME_INFO structure contains path and name information for a network resource. The structure contains a member that points to a Universal Naming Convention (UNC) name string for the resource, and two members that point to additional network connection information strings.
    • Field Detail

      • lpUniversalName

        public String lpUniversalName
        Pointer to the null-terminated UNC name string that identifies a network resource.
      • lpConnectionName

        public String lpConnectionName
        Pointer to a null-terminated string that is the name of a network connection.
      • lpRemainingPath

        public String lpRemainingPath
        Pointer to a null-terminated name string.
    • Constructor Detail

      • REMOTE_NAME_INFO

        public REMOTE_NAME_INFO()
      • REMOTE_NAME_INFO

        public REMOTE_NAME_INFO(Pointer address)
    • Method Detail

      • getFieldOrder

        protected List<String> getFieldOrder()
        Description copied from class: Structure
        Return this Structure's field names in their proper order. For example,
        
         protected List getFieldOrder() {
             return Arrays.asList(new String[] { ... });
         }
         
        IMPORTANT When deriving from an existing Structure subclass, ensure that you augment the list provided by the superclass, e.g.
        
         protected List getFieldOrder() {
             List fields = new ArrayList(super.getFieldOrder());
             fields.addAll(Arrays.asList(new String[] { ... }));
             return fields;
         }
         
        Field order must be explicitly indicated, since the field order as returned by Class.getFields() is not guaranteed to be predictable.
        Specified by:
        getFieldOrder in class Structure
        Returns:
        ordered list of field names
JNA API 4.4.0

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