upgradeprovision: Move to pythondoc format
[Samba/ekacnet.git] / source3 / librpc / idl / secrets.idl
blob929c9bc3961c0957b54341ce635b0f68e2fc0135
1 #include "idl_types.h"
3 /*
4 IDL structures for secrets code
5 */
8 pointer_default(unique)
10 interface secrets
14 * s3 on-disc storage structure for trusted domains, do not change !
17 typedef [flag(NDR_NOALIGN),public] struct {
18 [value(strlen_m_term(uni_name))] uint32 uni_name_len;
19 [charset(UTF16)] uint16 uni_name[32]; /* unicode domain name */
20 [value(strlen(pass))] uint32 pass_len;
21 astring pass; /* trust relationship's password */
22 time_t mod_time;
23 dom_sid domain_sid; /* remote domain's sid */
24 } TRUSTED_DOM_PASS;