diff options
Diffstat (limited to 'source4/pidl')
-rw-r--r-- | source4/pidl/TODO | 2 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba4/EJS.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/source4/pidl/TODO b/source4/pidl/TODO index a99a4f3f5f..db64df3dd9 100644 --- a/source4/pidl/TODO +++ b/source4/pidl/TODO @@ -14,3 +14,5 @@ - replace subcontext() with represent_as() - --explain-ndr option that dumps out parse tree ? + +- seperate tables for NDR and DCE/RPC diff --git a/source4/pidl/lib/Parse/Pidl/Samba4/EJS.pm b/source4/pidl/lib/Parse/Pidl/Samba4/EJS.pm index e24fb54b96..41ea1e8eaa 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba4/EJS.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba4/EJS.pm @@ -124,7 +124,7 @@ sub fn_declare($$) if (has_property($fn, "public")) { pidl_hdr "$decl;\n"; - pidl "$decl"; + pidl "_PUBLIC_ $decl"; } else { pidl "static $decl"; } |