diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-01 01:41:38 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-01 01:41:38 +0000 |
commit | b0531a38cc7135538d251440ac4fc2c887d9f335 (patch) | |
tree | 4f3eb93d99463cdd652f0aac410555937194834b /source4/build | |
parent | cfd41af8145ce31e9d0ff7abfcbd0d7c275dc30e (diff) | |
download | samba-b0531a38cc7135538d251440ac4fc2c887d9f335.tar.gz samba-b0531a38cc7135538d251440ac4fc2c887d9f335.tar.bz2 samba-b0531a38cc7135538d251440ac4fc2c887d9f335.zip |
started adding netlogon IDL and test suite
(This used to be commit 3d64eefb464d09fb6e84d6139f801887a278cf86)
Diffstat (limited to 'source4/build')
-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 e99942f0ea..08a8917fa5 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 "uint8"); return 1, if ($type eq "uint16"); return 1, if ($type eq "NTTIME"); + return 1, if ($type eq "time_t"); return 1, if ($type eq "error_status_t"); return 1, if ($type eq "boolean32"); return 1, if ($type eq "unsigned32"); @@ -210,6 +211,7 @@ sub type_align($) return 1, if ($type eq "uint8"); return 2, if ($type eq "uint16"); return 4, if ($type eq "NTTIME"); + return 4, if ($type eq "time_t"); return 8, if ($type eq "HYPER_T"); return 2, if ($type eq "wchar_t"); return 4, if ($type eq "DATA_BLOB"); |