diff options
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/pidl/eparser.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm index 478525deb0..f6403992ad 100644 --- a/source4/build/pidl/eparser.pm +++ b/source4/build/pidl/eparser.pm @@ -558,6 +558,9 @@ sub RewriteC($$$) next, if /^void ndr_print/ .. /^}/; next, if /^size_t ndr_size/ .. /^}/; + # get rid of the init functions + next, if /^NTSTATUS dcerpc_ndr_\w+_init/ .. /^}/; + # Get rid of dcerpc interface structures and functions since # they are also not very interesting. |