summaryrefslogtreecommitdiff
path: root/source3/librpc/ndr/libndr.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-08-19 20:47:31 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:56 -0500
commitc2628e19a77f2bec3f14d0f670717195c7299a90 (patch)
tree17c6133091df5b399c0a751b15e823921d9c9bdf /source3/librpc/ndr/libndr.h
parent8713bb2db74c37c5f4469fe8a726fa78868522b1 (diff)
downloadsamba-c2628e19a77f2bec3f14d0f670717195c7299a90.tar.gz
samba-c2628e19a77f2bec3f14d0f670717195c7299a90.tar.bz2
samba-c2628e19a77f2bec3f14d0f670717195c7299a90.zip
r24552: merge from SAMBA_4_0:
rename dcerpc_interface_table -> ndr_interface_table rename dcerpc_interface_list -> ndr_interface_list and move them to libndr.h metze (This used to be commit f57d23d0f1b1c7a435f3a4ad801e58519cc92a77)
Diffstat (limited to 'source3/librpc/ndr/libndr.h')
-rw-r--r--source3/librpc/ndr/libndr.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/source3/librpc/ndr/libndr.h b/source3/librpc/ndr/libndr.h
index 5902bbd2bc..adf2c94e4a 100644
--- a/source3/librpc/ndr/libndr.h
+++ b/source3/librpc/ndr/libndr.h
@@ -301,6 +301,19 @@ struct ndr_interface_string_array {
const char * const *names;
};
-#include "dcerpc.h"
+struct ndr_interface_table {
+ const char *name;
+ struct ndr_syntax_id syntax_id;
+ const char *helpstring;
+ uint32_t num_calls;
+ const struct ndr_interface_call *calls;
+ const struct ndr_interface_string_array *endpoints;
+ const struct ndr_interface_string_array *authservices;
+};
+
+struct ndr_interface_list {
+ struct ndr_interface_list *prev, *next;
+ const struct ndr_interface_table *table;
+};
#endif /* __LIBNDR_H__ */