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

Class LMShare.SHARE_INFO_502

  • Enclosing interface:
    LMShare


    public static class LMShare.SHARE_INFO_502
    extends Structure
    Contains information about the shared resource, including name of the resource, type and permissions, number of connections, and other pertinent information.
    • Field Detail

      • FIELDS

        public static final java.util.List<java.lang.String> FIELDS
      • shi502_netname

        public java.lang.String shi502_netname
        Pointer to a Unicode string specifying the name of a shared resource. Calls to the NetShareSetInfo function ignore this member.
      • shi502_type

        public int shi502_type
        A combination of values that specify the type of share. Calls to the NetShareSetInfo function ignore this member. One of the following values may be specified. You can isolate these values by using the STYPE_MASK value. STYPE_DISKTREE, STYPE_PRINTQ, STYPE_DEVICE, STYPE_IPC, STYPE_TEMPORARY, STYPE_SPECIAL
      • shi502_remark

        public java.lang.String shi502_remark
        Pointer to a Unicode string specifying an optional comment about the shared resource.
      • shi502_permissions

        public int shi502_permissions
        Specifies a DWORD value that indicates the shared resource's permissions for servers running with share-level security. This member is ignored on a server running user-level security. This member can be any of the following values. Calls to the NetShareSetInfo function ignore this member. Note that Windows does not support share-level security. For more information about controlling access to securable objects, see Access Control, Privileges, and Securable Objects. NOTE: Bit masks are defined in LmAccess.Java
      • shi502_max_uses

        public int shi502_max_uses
        Specifies a DWORD value that indicates the maximum number of concurrent connections that the shared resource can accommodate. The number of connections is unlimited if the value specified in this member is -1.
      • shi502_current_uses

        public int shi502_current_uses
        Specifies a DWORD value that indicates the number of current connections to the resource. Calls to the NetShareSetInfo function ignore this member.
      • shi502_path

        public java.lang.String shi502_path
        Pointer to a Unicode string that contains the local path for the shared resource. For disks, this member is the path being shared. For print queues, this member is the name of the print queue being shared. Calls to the NetShareSetInfo function ignore this member.
      • shi502_passwd

        public java.lang.String shi502_passwd
        Pointer to a Unicode string that specifies the share's password (when the server is running with share-level security). If the server is running with user-level security, this member is ignored. Note that Windows does not support share-level security. This member can be no longer than SHPWLEN+1 bytes (including a terminating null character). Calls to the NetShareSetInfo function ignore this member.
      • shi502_reserved

        public int shi502_reserved
        Reserved; must be zero. Calls to the NetShareSetInfo function ignore this member.
      • shi502_security_descriptor

        public Pointer shi502_security_descriptor
        Specifies the SECURITY_DESCRIPTOR associated with this share.
    • Constructor Detail

      • SHARE_INFO_502

        public SHARE_INFO_502()
      • SHARE_INFO_502

        public SHARE_INFO_502(Pointer memory)
    • Method Detail

      • getFieldOrder

        protected java.util.List<java.lang.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.5.2

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