summaryrefslogtreecommitdiff
path: root/source3/librpc/idl/misc.idl
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-09-06 18:13:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:43:56 -0500
commita7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433 (patch)
tree730aafce71808aafe621d00a312810d95744f742 /source3/librpc/idl/misc.idl
parent48450d97a56b43febb3853aba8caea4dd2cdffe1 (diff)
downloadsamba-a7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433.tar.gz
samba-a7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433.tar.bz2
samba-a7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433.zip
r18187: Replace copy of idl files with a svn:externals link.
Will fix the build_idl.sh script to only process the files we are concerned with in this branch. (This used to be commit 647ed21b098e8fe6513040de7a540fe77fa0b37e)
Diffstat (limited to 'source3/librpc/idl/misc.idl')
-rw-r--r--source3/librpc/idl/misc.idl47
1 files changed, 0 insertions, 47 deletions
diff --git a/source3/librpc/idl/misc.idl b/source3/librpc/idl/misc.idl
deleted file mode 100644
index 353457dd02..0000000000
--- a/source3/librpc/idl/misc.idl
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- miscellaneous IDL structures
-*/
-
-
-[
- pointer_default(unique)
-]
-interface misc
-{
- typedef [public,noprint,gensize,noejs] struct {
- uint32 time_low;
- uint16 time_mid;
- uint16 time_hi_and_version;
- uint8 clock_seq[2];
- uint8 node[6];
- } GUID;
-
- typedef [public] struct {
- uint32 handle_type;
- GUID uuid;
- } policy_handle;
-
- /* secure channel types */
- /* Only SEC_CHAN_WKSTA can forward requests to other domains. */
-
- typedef [public] enum {
- SEC_CHAN_WKSTA = 2,
- SEC_CHAN_DOMAIN = 4,
- SEC_CHAN_BDC = 6
- } netr_SchannelType;
-
- /* SAM database types */
- typedef [public,v1_enum] enum {
- SAM_DATABASE_DOMAIN = 0, /* Domain users and groups */
- SAM_DATABASE_BUILTIN = 1, /* BUILTIN users and groups */
- SAM_DATABASE_PRIVS = 2 /* Privileges */
- } netr_SamDatabaseID;
-
- typedef [public,v1_enum] enum {
- SAMR_REJECT_OTHER = 0,
- SAMR_REJECT_TOO_SHORT = 1,
- SAMR_REJECT_COMPLEXITY = 2
- } samr_RejectReason;
-
-
-}