1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

pidl Parse::Pidl::NDR: add HRESULT alignment

this is a guess

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2019-12-01 00:42:22 +13:00 committed by Andrew Bartlett
parent 33255102ac
commit 3c90c9de6f

View File

@ -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($$$)