Fix unqualified "net join"
[Samba.git] / librpc / idl / misc.idl
blobc4d8c62ca391c7f79868be392891493c3d3fb64a
1 /*
2 miscellaneous IDL structures
3 */
6 pointer_default(unique)
8 interface misc
10 typedef [public,noprint,gensize] struct {
11 uint32 time_low;
12 uint16 time_mid;
13 uint16 time_hi_and_version;
14 uint8 clock_seq[2];
15 uint8 node[6];
16 } GUID;
18 typedef [public] struct {
19 GUID uuid;
20 uint32 if_version;
21 } ndr_syntax_id;
23 typedef [public] struct {
24 uint32 handle_type;
25 GUID uuid;
26 } policy_handle;
28 /* secure channel types */
29 /* Only SEC_CHAN_WKSTA can forward requests to other domains. */
31 typedef [public] enum {
32 SEC_CHAN_NULL = 0,
33 SEC_CHAN_WKSTA = 2,
34 SEC_CHAN_DNS_DOMAIN = 3,
35 SEC_CHAN_DOMAIN = 4,
36 SEC_CHAN_BDC = 6
37 } netr_SchannelType;
39 typedef [public] struct {
40 NTSTATUS ntstatus;
41 uint32 unknown1;
42 uint32 unknown2; /* 0x00000001 */
43 } KRB5_EDATA_NTSTATUS;