From b0531a38cc7135538d251440ac4fc2c887d9f335 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 1 Dec 2003 01:41:38 +0000 Subject: started adding netlogon IDL and test suite (This used to be commit 3d64eefb464d09fb6e84d6139f801887a278cf86) --- source4/build/pidl/util.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/build') 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"); -- cgit