summaryrefslogtreecommitdiff
path: root/source4/build/pidl/pidl.pl
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-04-25 22:58:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:51:34 -0500
commit3dce6f1e23eb9b902c3b9b46214dc5ef2d6b8920 (patch)
tree036acd0d40bd94d95c288ccf06be3eb830b0b110 /source4/build/pidl/pidl.pl
parentf3d3b3c8091ad4540c330c07662540440affb96e (diff)
downloadsamba-3dce6f1e23eb9b902c3b9b46214dc5ef2d6b8920.tar.gz
samba-3dce6f1e23eb9b902c3b9b46214dc5ef2d6b8920.tar.bz2
samba-3dce6f1e23eb9b902c3b9b46214dc5ef2d6b8920.zip
r356: Start of auto-generated client functions. Tridge can you take a look
and tell me what you think? Output does not compile yet. (This used to be commit 65692c9a9301329ad93628778e3d8f9188a67059)
Diffstat (limited to 'source4/build/pidl/pidl.pl')
-rwxr-xr-xsource4/build/pidl/pidl.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/build/pidl/pidl.pl b/source4/build/pidl/pidl.pl
index 9b870d7263..c43d042b57 100755
--- a/source4/build/pidl/pidl.pl
+++ b/source4/build/pidl/pidl.pl
@@ -17,6 +17,7 @@ use idl;
use dump;
use header;
use server;
+use clientfns;
use parser;
use eparser;
use validator;
@@ -31,6 +32,7 @@ my($opt_header) = 0;
my($opt_template) = 0;
my($opt_server) = 0;
my($opt_parser) = 0;
+my($opt_clientfns) = 0;
my($opt_eparser) = 0;
my($opt_keep) = 0;
my($opt_output);
@@ -84,6 +86,7 @@ GetOptions (
'server' => \$opt_server,
'template' => \$opt_template,
'parser' => \$opt_parser,
+ 'clientfns' => \$opt_clientfns,
'eparser' => \$opt_eparser,
'diff' => \$opt_diff,
'keep' => \$opt_keep
@@ -142,6 +145,11 @@ sub process_file($)
IdlParser::Parse($pidl, $parser);
}
+ if ($opt_clientfns) {
+ my($clientfns) = util::ChangeExtension($output, "_c.c");
+ util::FileSave($clientfns, IdlClientFns::Parse($pidl));
+ }
+
if ($opt_eparser) {
my($parser) = util::ChangeExtension($output, ".c");
util::FileSave($parser, IdlEParser::Parse($pidl));