diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-17 02:17:01 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-17 02:17:01 +0000 |
commit | cc5f231e95b2a322a1f1f118b8a3a363a0e4d0cc (patch) | |
tree | de752cae992fd15166ed159faf4055eae5eebc3a /source4/build/pidl/util.pm | |
parent | ae4cb40100a5c04a4604acfde989ce96ef1801bd (diff) | |
download | samba-cc5f231e95b2a322a1f1f118b8a3a363a0e4d0cc.tar.gz samba-cc5f231e95b2a322a1f1f118b8a3a363a0e4d0cc.tar.bz2 samba-cc5f231e95b2a322a1f1f118b8a3a363a0e4d0cc.zip |
better [relative] handling, allowing for nested relative structures
and arrays of relative structures
(This used to be commit eb887f883a3ef2a90edec5bb495e140656c2f70d)
Diffstat (limited to 'source4/build/pidl/util.pm')
-rw-r--r-- | source4/build/pidl/util.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm index 16cb012d0c..949946d328 100644 --- a/source4/build/pidl/util.pm +++ b/source4/build/pidl/util.pm @@ -183,6 +183,7 @@ sub is_scalar_type($) return 1, if ($type eq "NTTIME"); return 1, if ($type eq "HYPER_T"); return 1, if ($type eq "wchar_t"); + return 1, if ($type eq "DATA_BLOB"); return 0; } @@ -207,6 +208,7 @@ sub type_align($) return 4, if ($type eq "NTTIME"); return 8, if ($type eq "HYPER_T"); return 2, if ($type eq "wchar_t"); + return 4, if ($type eq "DATA_BLOB"); return 0; } |