diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-07-10 00:23:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:19:28 -0500 |
commit | d0c347188246ae6d36e56457cb96c002f430da23 (patch) | |
tree | ec359f0e653410a8cfec85660484b7db4b044ab5 /source4/build/pidl/Parse/Pidl/Samba/COM/Proxy.pm | |
parent | 2a08b290134eacc803389b20e604792a7e74eac4 (diff) | |
download | samba-d0c347188246ae6d36e56457cb96c002f430da23.tar.gz samba-d0c347188246ae6d36e56457cb96c002f430da23.tar.bz2 samba-d0c347188246ae6d36e56457cb96c002f430da23.zip |
r8270: Export some symbols, making the code more readable.
(This used to be commit d64bffa17ea1c46d917e362d51741148b85fb97f)
Diffstat (limited to 'source4/build/pidl/Parse/Pidl/Samba/COM/Proxy.pm')
-rw-r--r-- | source4/build/pidl/Parse/Pidl/Samba/COM/Proxy.pm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/build/pidl/Parse/Pidl/Samba/COM/Proxy.pm b/source4/build/pidl/Parse/Pidl/Samba/COM/Proxy.pm index f4c23e1d9b..c94ef59ae9 100644 --- a/source4/build/pidl/Parse/Pidl/Samba/COM/Proxy.pm +++ b/source4/build/pidl/Parse/Pidl/Samba/COM/Proxy.pm @@ -7,6 +7,7 @@ package Parse::Pidl::Samba::COM::Proxy; use Parse::Pidl::Samba::COM::Header; +use Parse::Pidl::Util qw(has_property); use strict; @@ -103,7 +104,7 @@ static $fn->{RETURN_TYPE} dcom_proxy_$interface->{NAME}_$name(struct $interface- # Put arguments into r foreach my $a (@{$fn->{ELEMENTS}}) { - next unless (Parse::Pidl::Util::has_property($a, "in")); + next unless (has_property($a, "in")); if (Parse::Pidl::Typelist::typeIs($a->{TYPE}, "INTERFACE")) { $res .="\tNDR_CHECK(dcom_OBJREF_from_IUnknown(&r.in.$a->{NAME}.obj, $a->{NAME}));\n"; } else { @@ -126,7 +127,7 @@ static $fn->{RETURN_TYPE} dcom_proxy_$interface->{NAME}_$name(struct $interface- # Put r info back into arguments foreach my $a (@{$fn->{ELEMENTS}}) { - next unless (Parse::Pidl::Util::has_property($a, "out")); + next unless (has_property($a, "out")); if (Parse::Pidl::Typelist::typeIs($a->{TYPE}, "INTERFACE")) { $res .="\tNDR_CHECK(dcom_IUnknown_from_OBJREF(d->ctx, &$a->{NAME}, r.out.$a->{NAME}.obj));\n"; @@ -171,7 +172,7 @@ sub RegistrationFunction($$) $res .="\tNTSTATUS status = NT_STATUS_OK;\n"; foreach my $interface (@{$idl}) { next if $interface->{TYPE} ne "INTERFACE"; - next if not Parse::Pidl::Util::has_property($interface, "object"); + next if not has_property($interface, "object"); my $data = $interface->{DATA}; my $count = 0; @@ -199,8 +200,8 @@ sub Parse($) foreach my $x (@{$pidl}) { next if ($x->{TYPE} ne "INTERFACE"); - next if Parse::Pidl::Util::has_property($x, "local"); - next unless Parse::Pidl::Util::has_property($x, "object"); + next if has_property($x, "local"); + next unless has_property($x, "object"); $res .= ParseInterface($x); } |