diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-17 13:19:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:51 -0500 |
commit | fe597fd1e28b92766e174249b10739fb2fe4a35f (patch) | |
tree | a5ff0ce5cea1d65c66d2ea3a3ad34ed85ad45d8b /source4/build/pidl/ndr_header.pm | |
parent | 5af7002c1de5d59626e68420b43526ef5ffe3f42 (diff) | |
download | samba-fe597fd1e28b92766e174249b10739fb2fe4a35f.tar.gz samba-fe597fd1e28b92766e174249b10739fb2fe4a35f.tar.bz2 samba-fe597fd1e28b92766e174249b10739fb2fe4a35f.zip |
r6857: - Support [public] on functions
- Add some more pidl tests based on ref_notes.txt
We currently fail some tests because we don't default to "ref"
for top-level pointers at the moment. We also fail some of the multi-level
tests.
(This used to be commit 187802f580d85e19ee9b7f07db931d0511f197bc)
Diffstat (limited to 'source4/build/pidl/ndr_header.pm')
-rw-r--r-- | source4/build/pidl/ndr_header.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/build/pidl/ndr_header.pm b/source4/build/pidl/ndr_header.pm index f40810a84d..0c6291fca7 100644 --- a/source4/build/pidl/ndr_header.pm +++ b/source4/build/pidl/ndr_header.pm @@ -337,6 +337,11 @@ sub HeaderFnProto($$) pidl "NTSTATUS dcerpc_$name(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct $name *r);\n"; pidl "struct rpc_request *dcerpc_$name\_send(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct $name *r);\n"; + return unless util::has_property($fn, "public"); + + pidl "NTSTATUS ndr_push_$name(struct ndr_push *ndr, int flags, struct $name *r);\n"; + pidl "NTSTATUS ndr_pull_$name(struct ndr_pull *ndr, int flags, struct $name *r);\n"; + pidl "\n"; } |