diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-13 09:26:53 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-13 09:26:53 +0000 |
commit | 3031937d56363cc6322062a66c991182664f40bc (patch) | |
tree | 4d2ef00a8f2e269fdefeccc04f6ae2db9dd45d63 /source4/librpc/ndr/ndr_dfs.h | |
parent | ff02537261e53b4ec60e5dcad32bf4207065b028 (diff) | |
download | samba-3031937d56363cc6322062a66c991182664f40bc.tar.gz samba-3031937d56363cc6322062a66c991182664f40bc.tar.bz2 samba-3031937d56363cc6322062a66c991182664f40bc.zip |
* fixed conformant arrays in structures
* expanded the rpcecho test
* started adding the NETDFS pipe
(This used to be commit 095ab42cbdd5c1c5ab753e2eb275742ba822c8b9)
Diffstat (limited to 'source4/librpc/ndr/ndr_dfs.h')
-rw-r--r-- | source4/librpc/ndr/ndr_dfs.h | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/source4/librpc/ndr/ndr_dfs.h b/source4/librpc/ndr/ndr_dfs.h new file mode 100644 index 0000000000..a1e0c2ef17 --- /dev/null +++ b/source4/librpc/ndr/ndr_dfs.h @@ -0,0 +1,85 @@ +/* header auto-generated by pidl */ + +struct dfs_Exist { + struct { + } in; + + struct { + uint32 *exist_flag; + } out; + +}; + +struct dfs_Add { + struct { + const char *path; + const char *server; + const char *share; + const char *comment; + uint32 flags; + } in; + + struct { + NTSTATUS result; + } out; + +}; + +struct dfs_Remove { + struct { + const char *path; + const char *server; + const char *share; + } in; + + struct { + NTSTATUS result; + } out; + +}; + +struct dfs_UNKNOWN3 { + struct { + } in; + + struct { + NTSTATUS result; + } out; + +}; + +struct dfs_Info { + struct { + const char *path; + const char *server; + const char *share; + uint16 level; + } in; + + struct { + NTSTATUS result; + } out; + +}; + +struct dfs_Enum { + struct { + const char *name; + uint32 level; + uint32 buffer_size; + uint32 *resume_handle; + } in; + + struct { + uint32 *resume_handle; + NTSTATUS result; + } out; + +}; + +#define DCERPC_DFS_EXIST 0 +#define DCERPC_DFS_ADD 1 +#define DCERPC_DFS_REMOVE 2 +#define DCERPC_DFS_UNKNOWN3 3 +#define DCERPC_DFS_INFO 4 +#define DCERPC_DFS_ENUM 5 |