Skip to content

Commit

Permalink
Merge pull request #73 from trejkaz/master
Browse files Browse the repository at this point in the history
Making fields on USER_INFO_23 public
  • Loading branch information
dblock committed May 14, 2012
2 parents 0a19077 + 4461ca9 commit 70bb54e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contrib/platform/src/com/sun/jna/platform/win32/LMAccess.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,17 @@ public USER_INFO_23(Pointer memory) {
* A pointer to a Unicode string that specifies the name of the user account.
* Calls to the NetUserSetInfo function ignore this member.
*/
WString usri23_name;
public WString usri23_name;
/**
* A pointer to a Unicode string that contains the full name of the user.
* This string can be a null string, or it can have any number of characters before the terminating null character.
*/
WString usri23_full_name;
public WString usri23_full_name;
/**
* A pointer to a Unicode string that contains a comment associated with the user account.
* This string can be a null string, or it can have any number of characters before the terminating null character.
*/
WString usri23_comment;
public WString usri23_comment;
/**
* This member can be one or more of the following values.
* Note that setting user account control flags may require certain privileges and control access rights.
Expand Down Expand Up @@ -201,12 +201,12 @@ public USER_INFO_23(Pointer memory) {
* UF_SERVER_TRUST_ACCOUNT This is a computer account for a backup domain controller that is a member of this domain.
* UF_INTERDOMAIN_TRUST_ACCOUNT This is a permit to trust account for a domain that trusts other domains.
*/
int usri23_flags;
public int usri23_flags;
/**
* A pointer to a SID structure that contains the security identifier (SID)
* that uniquely identifies the user. The NetUserAdd and NetUserSetInfo functions ignore this member.
*/
PSID usri23_user_sid;
public PSID usri23_user_sid;
}

/**
Expand Down

0 comments on commit 70bb54e

Please sign in to comment.