diff options
author | Rafal Szczesniak <mimir@samba.org> | 2006-05-28 10:45:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:40 -0500 |
commit | 8a6ac85a961df1cdfb8a9db0af15b6258ee9da47 (patch) | |
tree | e426b08cf4ee92c8b37f4ba269433e7605433abe /source4/libnet/libnet_user.h | |
parent | 78fea25786323a6b6830bdead2607c116555218b (diff) | |
download | samba-8a6ac85a961df1cdfb8a9db0af15b6258ee9da47.tar.gz |
r15920: Move userman.c and userinfo.c definition into respective
header files instead of composite.h
rafal
(This used to be commit 8cafbe7afedc90346cbd0cbedc2571143ae3dbc6)
Diffstat (limited to 'source4/libnet/libnet_user.h')
-rw-r--r-- | source4/libnet/libnet_user.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source4/libnet/libnet_user.h b/source4/libnet/libnet_user.h index 2182ccb4e47..23ced096b48 100644 --- a/source4/libnet/libnet_user.h +++ b/source4/libnet/libnet_user.h @@ -54,3 +54,24 @@ struct libnet_DeleteUser { const char *error_string; } out; }; + + +struct libnet_ModifyUser { + struct { + const char *user_name; + const char *domain_name; + + const char *full_name; + const char *description; + const char *comment; + const char *logon_script; + const char *profile_path; + struct timeval *acct_expiry; + struct timeval *allow_password_change; + struct timeval *force_password_change; + uint32_t acct_flags; + } in; + struct { + const char *error_string; + } out; +}; |