summaryrefslogtreecommitdiffstats
path: root/source/librpc/ndr
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-08-18 10:33:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:55 -0500
commit24e096b3659c3070a1ce029174fba51ae59e89ad (patch)
treed353ee2ef17f12a73c5bb336ebdb4cb1b386dc2d /source/librpc/ndr
parente827c7311ce9890358be145099391c6b3cee15a1 (diff)
downloadsamba-24e096b3659c3070a1ce029174fba51ae59e89ad.tar.gz
samba-24e096b3659c3070a1ce029174fba51ae59e89ad.tar.xz
samba-24e096b3659c3070a1ce029174fba51ae59e89ad.zip
r24538: merge from SAMBA_4_0:
rename struct dcerpc_interface_call -> struct ndr_interface_call and move it to librpc/ndr/libndr.h metze
Diffstat (limited to 'source/librpc/ndr')
-rw-r--r--source/librpc/ndr/libndr.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/librpc/ndr/libndr.h b/source/librpc/ndr/libndr.h
index fa9c1b02b6f..2d7c89dfad3 100644
--- a/source/librpc/ndr/libndr.h
+++ b/source/librpc/ndr/libndr.h
@@ -287,6 +287,15 @@ typedef void (*ndr_print_function_t)(struct ndr_print *, const char *, int, cons
extern const struct ndr_syntax_id ndr_transfer_syntax;
extern const struct ndr_syntax_id ndr64_transfer_syntax;
+struct ndr_interface_call {
+ const char *name;
+ size_t struct_size;
+ ndr_push_flags_fn_t ndr_push;
+ ndr_pull_flags_fn_t ndr_pull;
+ ndr_print_function_t ndr_print;
+ BOOL async;
+};
+
#include "dcerpc.h"
#endif /* __LIBNDR_H__ */