From ce84ab9a83441845202e99f8ffd4512839926024 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 18 Aug 2007 06:57:49 +0000 Subject: r24532: rename struct dcerpc_syntax_id into struct ndr_syntax_id and move it into misc.idl The goal is to get rid a all dcerpc specific stuff in the generated ndr layer. metze (This used to be commit 2ed014cfb894cccab1654e3f7d5876393e2b52d7) --- source4/librpc/idl/dcerpc.idl | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'source4/librpc/idl/dcerpc.idl') diff --git a/source4/librpc/idl/dcerpc.idl b/source4/librpc/idl/dcerpc.idl index 75fd051ef1..c864bd4b39 100644 --- a/source4/librpc/idl/dcerpc.idl +++ b/source4/librpc/idl/dcerpc.idl @@ -12,16 +12,11 @@ import "misc.idl"; interface dcerpc { - typedef [public] struct { - GUID uuid; - uint32 if_version; - } dcerpc_syntax_id; - typedef struct { uint16 context_id; uint8 num_transfer_syntaxes; - dcerpc_syntax_id abstract_syntax; - dcerpc_syntax_id transfer_syntaxes[num_transfer_syntaxes]; + ndr_syntax_id abstract_syntax; + ndr_syntax_id transfer_syntaxes[num_transfer_syntaxes]; } dcerpc_ctx_list; typedef struct { @@ -62,7 +57,7 @@ interface dcerpc typedef struct { uint16 result; uint16 reason; - dcerpc_syntax_id syntax; + ndr_syntax_id syntax; } dcerpc_ack_ctx; typedef struct { -- cgit