mirror of
https://github.com/samba-team/samba.git
synced 2025-07-30 19:42:05 +03:00
r19586: draft version of libnet_UserList function. still a bit of work
to do left.
rafal
(This used to be commit 4e6d479b07
)
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
d8ecabe452
commit
cde653b55a
@ -112,3 +112,23 @@ struct libnet_UserInfo {
|
||||
const char *error_string;
|
||||
} out;
|
||||
};
|
||||
|
||||
|
||||
struct libnet_UserList {
|
||||
struct {
|
||||
const char *domain_name;
|
||||
int page_size;
|
||||
uint restore_index;
|
||||
} in;
|
||||
struct {
|
||||
int count;
|
||||
uint restore_index;
|
||||
|
||||
struct userlist {
|
||||
const char *sid;
|
||||
const char *username;
|
||||
} *users;
|
||||
|
||||
const char *error_string;
|
||||
} out;
|
||||
};
|
||||
|
Reference in New Issue
Block a user