r8692: Starting parts of code to provide user modify functionality.
[jra/samba/.git] / source4 / libnet / composite.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Copyright (C) Rafal Szczesniak 2005
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 /*
22   composite function io definitions
23 */
24
25 #include "librpc/gen_ndr/ndr_samr.h"
26
27
28 struct libnet_rpc_userinfo {
29         struct {
30                 struct policy_handle domain_handle;
31                 const char *sid;
32                 uint16_t level;
33         } in;
34         struct {
35                 union samr_UserInfo info;
36         } out;
37 };
38
39
40 struct libnet_rpc_useradd {
41         struct {
42                 struct policy_handle domain_handle;
43                 const char *username;
44         } in;
45         struct {
46                 struct policy_handle user_handle;
47         } out;
48 };
49
50
51 struct libnet_rpc_userdel {
52         struct {
53                 struct policy_handle domain_handle;
54                 const char *username;
55         } in;
56         struct {
57                 struct policy_handle user_handle;
58         } out;
59 };
60
61
62 struct libnet_rpc_usermod {
63         struct {
64                 struct policy_handle domain_handle;
65                 const char *username;
66
67                 struct usermod {
68                         uint32_t fields;    /* bitmask field */
69
70                         const char *account_name;
71                         const char *full_name;
72                 } change;
73         } in;
74 };
75
76
77 struct libnet_rpc_domain_open {
78         struct {
79                 const char *domain_name;
80                 uint32_t access_mask;
81         } in;
82         struct {
83                 struct policy_handle domain_handle;
84         } out;
85 };