From 38a4749d2cf9266164527e2b3c14bc7e47b72326 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 21 Dec 2008 18:46:59 +0100 Subject: Allow providing extra module-level Python functions. --- pidl/lib/Parse/Pidl/Samba4/Python.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pidl/lib') diff --git a/pidl/lib/Parse/Pidl/Samba4/Python.pm b/pidl/lib/Parse/Pidl/Samba4/Python.pm index 120a35a1cf..69365416a5 100644 --- a/pidl/lib/Parse/Pidl/Samba4/Python.pm +++ b/pidl/lib/Parse/Pidl/Samba4/Python.pm @@ -1183,6 +1183,12 @@ sub Parse($$$$$) my ($fn_name, $pyfn_name, $flags, $doc) = @$_; $self->pidl("{ \"$fn_name\", (PyCFunction)$pyfn_name, $flags, $doc },"); } + + $self->deindent; + $self->pidl("#ifdef ".uc("py_mod_$basename\_extra_methods")); + $self->pidl("\t" .uc("py_mod_$basename\_extra_methods")); + $self->pidl("#endif"); + $self->indent; $self->pidl("{ NULL, NULL, 0, NULL }"); $self->deindent; -- cgit