Class WinNT.TOKEN_PRIVILEGES

  • Enclosing interface:
    WinNT

    public static class WinNT.TOKEN_PRIVILEGES
    extends Structure
    The TOKEN_PRIVILEGES structure contains information about a set of privileges for an access token.
    • Field Detail

      • PrivilegeCount

        public WinDef.DWORD PrivilegeCount
        This must be set to the number of entries in the Privileges array.
      • Privileges

        public WinNT.LUID_AND_ATTRIBUTES[] Privileges
        Specifies an array of LUID_AND_ATTRIBUTES structures. Each structure contains the LUID and attributes of a privilege.
    • Constructor Detail

      • TOKEN_PRIVILEGES

        public TOKEN_PRIVILEGES()
        Creates an empty instance with no privileges.
      • TOKEN_PRIVILEGES

        public TOKEN_PRIVILEGES​(int nbOfPrivileges)
        Parameters:
        nbOfPrivileges - Desired size of the Privileges array
      • TOKEN_PRIVILEGES

        public TOKEN_PRIVILEGES​(Pointer p)
        Initialize a TOKEN_PRIVILEGES instance from initialized memory.
        Parameters:
        p - base 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.
        Overrides:
        getFieldOrder in class Structure
        Returns:
        ordered list of field names