Add an entry for the "check" command to the tdbtool manpage.
[Samba/gebeck_regimport.git] / librpc / idl / misc.idl
blob1ef0d913b9c429deb9e3163163010427332126ca
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;