Uses of Class
com.sun.jna.platform.win32.WinNT.PSID

Packages that use WinNT.PSID
com.sun.jna.platform.win32   
 

Uses of WinNT.PSID in com.sun.jna.platform.win32
 

Subclasses of WinNT.PSID in com.sun.jna.platform.win32
static class WinNT.PSID.ByReference
           
 

Fields in com.sun.jna.platform.win32 declared as WinNT.PSID
 WinNT.PSID Netapi32Util.DomainTrust.DomainSid
          Contains the security identifier of the domain represented by this structure.
 WinNT.PSID LMAccess.GROUP_INFO_3.grpi3_group_sid
          Pointer to a SID structure that contains the security identifier (SID) that uniquely identifies the global group.
 

Methods in com.sun.jna.platform.win32 that return WinNT.PSID
 WinNT.PSID WinNT.PSIDByReference.getValue()
           
 

Methods in com.sun.jna.platform.win32 with parameters of type WinNT.PSID
static java.lang.String Advapi32Util.convertSidToStringSid(WinNT.PSID sid)
          Convert a security identifier (SID) to a string format suitable for display, storage, or transmission.
 boolean Advapi32.ConvertSidToStringSid(WinNT.PSID Sid, com.sun.jna.ptr.PointerByReference StringSid)
          Convert a security identifier (SID) to a string format suitable for display, storage, or transmission.
 boolean Advapi32.CreateWellKnownSid(int wellKnownSidType, WinNT.PSID domainSid, WinNT.PSID pSid, com.sun.jna.ptr.IntByReference cbSid)
          The CreateWellKnownSid function creates a SID for predefined aliases.
static Advapi32Util.Account Advapi32Util.getAccountBySid(java.lang.String systemName, WinNT.PSID sid)
          Get the account by SID.
static Advapi32Util.Account Advapi32Util.getAccountBySid(WinNT.PSID sid)
          Get the account by SID on the local system.
 int Advapi32.GetLengthSid(WinNT.PSID pSid)
          Returns the length, in bytes, of a valid security identifier (SID).
 boolean Advapi32.IsValidSid(WinNT.PSID pSid)
          The IsValidSid function validates a security identifier (SID) by verifying that the revision number is within a known range, and that the number of subauthorities is less than the maximum.
 boolean Advapi32.IsWellKnownSid(WinNT.PSID pSid, int wellKnownSidType)
          Compares a SID to a well known SID and returns TRUE if they match.
 boolean Advapi32.LookupAccountName(java.lang.String lpSystemName, java.lang.String lpAccountName, WinNT.PSID Sid, com.sun.jna.ptr.IntByReference cbSid, char[] ReferencedDomainName, com.sun.jna.ptr.IntByReference cchReferencedDomainName, com.sun.jna.ptr.PointerByReference peUse)
          Accepts the name of a system and anaccount as input and retrieves a security identifier (SID) for the account and the name of the domain on which the account was found.
 boolean Advapi32.LookupAccountSid(java.lang.String lpSystemName, WinNT.PSID Sid, char[] lpName, com.sun.jna.ptr.IntByReference cchName, char[] ReferencedDomainName, com.sun.jna.ptr.IntByReference cchReferencedDomainName, com.sun.jna.ptr.PointerByReference peUse)
          Retrieves the name of the account for this SID and the name of the first domain on which this SID is found.
 void WinNT.PSIDByReference.setValue(WinNT.PSID h)
           
 

Constructors in com.sun.jna.platform.win32 with parameters of type WinNT.PSID
WinNT.PSIDByReference(WinNT.PSID h)