mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
6c9d517826
Guenther
(This used to be commit 7a48779ee5
)
61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
#include "idl_types.h"
|
|
|
|
import "wkssvc.idl", "security.idl";
|
|
|
|
/*
|
|
libnetjoin interface definition
|
|
*/
|
|
|
|
[
|
|
pointer_default(unique)
|
|
]
|
|
interface libnetjoin
|
|
{
|
|
typedef bitmap wkssvc_joinflags wkssvc_joinflags;
|
|
|
|
[nopush,nopull] WERROR libnet_JoinCtx(
|
|
[in] string dc_name,
|
|
[in] string machine_name,
|
|
[in,ref] string *domain_name,
|
|
[in] string account_ou,
|
|
[in] string admin_account,
|
|
[in] string admin_password,
|
|
[in] string machine_password,
|
|
[in] wkssvc_joinflags join_flags,
|
|
[in] string os_version,
|
|
[in] string os_name,
|
|
[in] boolean8 create_upn,
|
|
[in] string upn,
|
|
[in] boolean8 modify_config,
|
|
[in] ads_struct *ads,
|
|
[in] boolean8 debug,
|
|
[out] string account_name,
|
|
[out] string netbios_domain_name,
|
|
[out] string dns_domain_name,
|
|
[out] string dn,
|
|
[out] dom_sid *domain_sid,
|
|
[out] boolean8 modified_config,
|
|
[out] string error_string,
|
|
[out] boolean8 domain_is_ad
|
|
);
|
|
|
|
[nopush,nopull] WERROR libnet_UnjoinCtx(
|
|
[in] string dc_name,
|
|
[in] string machine_name,
|
|
[in] string domain_name,
|
|
[in] string account_ou,
|
|
[in] string admin_account,
|
|
[in] string admin_password,
|
|
[in] string machine_password,
|
|
[in] wkssvc_joinflags unjoin_flags,
|
|
[in] boolean8 modify_config,
|
|
[in] dom_sid *domain_sid,
|
|
[in] ads_struct *ads,
|
|
[in] boolean8 debug,
|
|
[out] string netbios_domain_name,
|
|
[out] string dns_domain_name,
|
|
[out] boolean8 modified_config,
|
|
[out] string error_string
|
|
);
|
|
}
|