1
0
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:
Rafal Szczesniak
2006-11-06 22:03:22 +00:00
committed by Gerald (Jerry) Carter
parent d8ecabe452
commit cde653b55a
2 changed files with 218 additions and 1 deletions

View File

@ -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;
};