From 08f16292a0cfab57c484661c1f05e1a49ec06942 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 29 Sep 2005 14:00:07 +0000 Subject: r10608: - fix hierachical memory handling in ndr_pull_nbt_name - add wrepl_nbt_name scalar type and do the pull/push in the ndr layer instead of the caller - give the flags and group_flag in the wrepl_name a meaning metze (This used to be commit b98efc2905e1147eb97111b46a877bdb9d8dd154) --- source4/pidl/lib/Parse/Pidl/Typelist.pm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'source4/pidl') diff --git a/source4/pidl/lib/Parse/Pidl/Typelist.pm b/source4/pidl/lib/Parse/Pidl/Typelist.pm index 7dfbe761de..d81fedf71e 100644 --- a/source4/pidl/lib/Parse/Pidl/Typelist.pm +++ b/source4/pidl/lib/Parse/Pidl/Typelist.pm @@ -140,9 +140,9 @@ my $scalars = { NDR_ALIGN => 4 }, "COMRESULT" => { - "C_TYPE" => "COMRESULT", - IS_REFERENCE => 0, - NDR_ALIGN => 4 + C_TYPE => "COMRESULT", + IS_REFERENCE => 0, + NDR_ALIGN => 4 }, # special types @@ -151,6 +151,11 @@ my $scalars = { IS_REFERENCE => 1, NDR_ALIGN => 4 #??? }, + "wrepl_nbt_name"=> { + C_TYPE => "struct nbt_name", + IS_REFERENCE => 0, + NDR_ALIGN => 4 + }, "ipv4address" => { C_TYPE => "const char *", IS_REFERENCE => 1, -- cgit