diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-08-18 10:33:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:55 -0500 |
commit | 68821746d8f79e7480b936d215875eb17af7eccf (patch) | |
tree | f0ddf8dffc2d83d4ab9db8bfb48ee4cbd0ca5e55 /source3/include/dcerpc.h | |
parent | b018c9b9a22fa44b924a64f7a3ee8c0e38f614e2 (diff) | |
download | samba-68821746d8f79e7480b936d215875eb17af7eccf.tar.gz samba-68821746d8f79e7480b936d215875eb17af7eccf.tar.xz samba-68821746d8f79e7480b936d215875eb17af7eccf.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
(This used to be commit 24e096b3659c3070a1ce029174fba51ae59e89ad)
Diffstat (limited to 'source3/include/dcerpc.h')
-rw-r--r-- | source3/include/dcerpc.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/source3/include/dcerpc.h b/source3/include/dcerpc.h index a98971ddd46..a050dd8020c 100644 --- a/source3/include/dcerpc.h +++ b/source3/include/dcerpc.h @@ -1,17 +1,5 @@ /* unused. Stub to make the pidl generated NDR parsers compile */ -/* - this is used to find pointers to calls -*/ -struct dcerpc_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; -}; - struct dcerpc_endpoint_list { uint32_t count; const char * const *names; @@ -27,7 +15,7 @@ struct dcerpc_interface_table { struct ndr_syntax_id syntax_id; const char *helpstring; uint32_t num_calls; - const struct dcerpc_interface_call *calls; + const struct ndr_interface_call *calls; const struct dcerpc_endpoint_list *endpoints; const struct dcerpc_authservice_list *authservices; }; |