diff options
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/pidl/util.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm index c57322a462..112b617806 100644 --- a/source4/build/pidl/util.pm +++ b/source4/build/pidl/util.pm @@ -302,6 +302,7 @@ my %type_alignments = "WERROR" => 4, "boolean32" => 4, "unsigned32" => 4, + "ipv4address" => 4, "hyper" => 8, "NTTIME_hyper" => 8 ); @@ -538,7 +539,8 @@ my %type_mappings = "udlong" => "uint64_t", "hyper" => "uint64_t", "NTTIME_1sec" => "NTTIME", - "NTTIME_hyper" => "NTTIME" + "NTTIME_hyper" => "NTTIME", + "ipv4address" => "const char *" ); # map from a IDL type to a C header type |