2005-03-07 08:09:37 +03:00
/*
Unix SMB / CIFS implementation .
Copyright ( C ) Rafal Szczesniak 2005
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
/*
2005-04-23 06:59:53 +04:00
composite function io definitions
2005-03-07 08:09:37 +03:00
*/
2005-06-11 14:31:33 +04:00
struct libnet_rpc_userinfo {
2005-03-07 08:09:37 +03:00
struct {
struct policy_handle domain_handle ;
const char * sid ;
uint16_t level ;
} in ;
struct {
union samr_UserInfo info ;
} out ;
} ;
2005-04-19 07:55:58 +04:00
2005-06-11 14:31:33 +04:00
struct libnet_rpc_useradd {
2005-04-19 07:55:58 +04:00
struct {
struct policy_handle domain_handle ;
const char * username ;
} in ;
struct {
struct policy_handle user_handle ;
} out ;
} ;
2005-04-21 11:24:16 +04:00
2005-06-11 14:31:33 +04:00
struct libnet_rpc_userdel {
2005-04-21 11:24:16 +04:00
struct {
struct policy_handle domain_handle ;
const char * username ;
} in ;
struct {
struct policy_handle user_handle ;
} out ;
} ;
2005-06-04 03:10:26 +04:00
2005-06-11 14:31:33 +04:00
struct libnet_rpc_domain_open {
2005-06-04 03:10:26 +04:00
struct {
2005-06-06 12:59:19 +04:00
const char * domain_name ;
2005-06-04 03:10:26 +04:00
uint32_t access_mask ;
} in ;
struct {
struct policy_handle domain_handle ;
} out ;
} ;