mirror of
https://github.com/samba-team/samba.git
synced 2025-12-24 04:23:53 +03:00
added cli_lsa_enum_account_rights() call. Note that this is in
principal similar to the existing cli_lsa_enum_privsaccount() call, except that cli_lsa_enum_account_rights() doesn't require a call to open_account first. There is also the minor matter that cli_lsa_enum_account_rights() works whereas cli_lsa_enum_privsaccount() doesn't! this call can be used to find what privileges an account or group has. This is a first step towards proper privileges support in Samba.
This commit is contained in:
@@ -210,6 +210,22 @@ typedef struct unistr3_info
|
||||
|
||||
} UNISTR3;
|
||||
|
||||
/* an element in a unicode string array */
|
||||
typedef struct
|
||||
{
|
||||
uint16 length;
|
||||
uint16 size;
|
||||
uint32 ref_id;
|
||||
UNISTR2 string;
|
||||
} UNISTR_ARRAY_EL;
|
||||
|
||||
/* an array of unicode strings */
|
||||
typedef struct
|
||||
{
|
||||
uint32 ref_id;
|
||||
uint32 count;
|
||||
UNISTR_ARRAY_EL *strings;
|
||||
} UNISTR_ARRAY;
|
||||
|
||||
/* DOM_RID2 - domain RID structure for ntlsa pipe */
|
||||
typedef struct domrid2_info
|
||||
|
||||
Reference in New Issue
Block a user