diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-07-30 15:29:02 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-07-31 12:49:47 +0200 |
commit | 28a46567385eebba40676831369564590b1ed1da (patch) | |
tree | 5e7e3606a362df67203bc9885795876c75a14ac3 /pidl/lib | |
parent | 6a1ff907082a0b3225f2698f93f92ae6396d4239 (diff) | |
download | samba-28a46567385eebba40676831369564590b1ed1da.tar.gz samba-28a46567385eebba40676831369564590b1ed1da.tar.bz2 samba-28a46567385eebba40676831369564590b1ed1da.zip |
pidl:Samba3/ClientNDR: rename ParseFunction => ParseFunctionSync and add ParseFunction as glue
This prepares the following ParseFunctionAsync* commits.
metze
Diffstat (limited to 'pidl/lib')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm b/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm index 9ae943fecf..34480ff8da 100644 --- a/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm +++ b/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm @@ -122,7 +122,7 @@ sub ParseOutputArgument($$$;$$) } } -sub ParseFunction($$$) +sub ParseFunctionSync($$$) { my ($self, $if, $fn) = @_; @@ -223,6 +223,13 @@ sub ParseFunction($$$) $self->pidl(""); } +sub ParseFunction($$$) +{ + my ($self, $if, $fn) = @_; + + $self->ParseFunctionSync($if, $fn); +} + sub ParseInterface($$) { my ($self, $if) = @_; |