diff options
Diffstat (limited to 'source4/build/pidl/Parse')
-rw-r--r-- | source4/build/pidl/Parse/Pidl/Typelist.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/build/pidl/Parse/Pidl/Typelist.pm b/source4/build/pidl/Parse/Pidl/Typelist.pm index 60b6e7905b..ab5df0fc52 100644 --- a/source4/build/pidl/Parse/Pidl/Typelist.pm +++ b/source4/build/pidl/Parse/Pidl/Typelist.pm @@ -137,6 +137,11 @@ my $scalars = { IS_REFERENCE => 0, NDR_ALIGN => 4 }, + "COMRESULT" => { + "C_TYPE" => "COMRESULT", + IS_REFERENCE => 0, + NDR_ALIGN => 4 + }, # special types "nbt_string" => { @@ -244,7 +249,8 @@ my $aliases = { "char" => "uint8", "long" => "int32", "short" => "int16", - "HYPER_T" => "hyper" + "HYPER_T" => "hyper", + "HRESULT" => "COMRESULT", }; sub RegisterAliases() |