From: Douglas Bagnall Date: Sat, 30 Nov 2019 11:42:22 +0000 (+1300) Subject: pidl Parse::Pidl::NDR: add HRESULT alignment X-Git-Tag: ldb-2.1.0~333 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c90c9de6f45af60d9db5f40ec0dad6318e53e3d;p=thirdparty%2Fsamba.git pidl Parse::Pidl::NDR: add HRESULT alignment this is a guess Signed-off-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/pidl/lib/Parse/Pidl/NDR.pm b/pidl/lib/Parse/Pidl/NDR.pm index f48b0f8bb12..13b2ebe1789 100644 --- a/pidl/lib/Parse/Pidl/NDR.pm +++ b/pidl/lib/Parse/Pidl/NDR.pm @@ -81,7 +81,8 @@ my $scalar_alignment = { 'ipv4address' => 4, 'ipv6address' => 4, #16? 'dnsp_name' => 1, - 'dnsp_string' => 1 + 'dnsp_string' => 1, + 'HRESULT' => 4, }; sub GetElementLevelTable($$$)