From f21fb4b3958fe630400b145b729c966fa9c053a9 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 3 Oct 2009 18:13:25 +1000 Subject: pidl: added int3264 as a base type This is the type used for a variable that is 32 bits for NDR32 and 64 bits for NDR64 --- pidl/lib/Parse/Pidl/NDR.pm | 2 ++ pidl/lib/Parse/Pidl/Typelist.pm | 2 ++ 2 files changed, 4 insertions(+) (limited to 'pidl') diff --git a/pidl/lib/Parse/Pidl/NDR.pm b/pidl/lib/Parse/Pidl/NDR.pm index 4f2578e72e4..7c0f7bb7b45 100644 --- a/pidl/lib/Parse/Pidl/NDR.pm +++ b/pidl/lib/Parse/Pidl/NDR.pm @@ -52,6 +52,8 @@ my $scalar_alignment = { 'uint16' => 2, 'int32' => 4, 'uint32' => 4, + 'int3264' => 5, + 'uint3264' => 5, 'hyper' => 8, 'double' => 8, 'pointer' => 8, diff --git a/pidl/lib/Parse/Pidl/Typelist.pm b/pidl/lib/Parse/Pidl/Typelist.pm index 12ffa92bf6f..55041a96023 100644 --- a/pidl/lib/Parse/Pidl/Typelist.pm +++ b/pidl/lib/Parse/Pidl/Typelist.pm @@ -34,6 +34,8 @@ my %scalars = ( "uint16" => "uint16_t", "int32" => "int32_t", "uint32" => "uint32_t", + "int3264" => "int32_t", + "uint3264" => "uint32_t", "hyper" => "uint64_t", "dlong" => "int64_t", "udlong" => "uint64_t", -- cgit v1.2.1