summaryrefslogtreecommitdiff
path: root/source4/build/pidl/header.pm
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-20 01:27:17 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-20 01:27:17 +0000
commitcd3c6c3cc7b22ab38b9f53276891ad828831a38e (patch)
treea777701a98c49f0244183b0f655f395a43e64b24 /source4/build/pidl/header.pm
parent376ba1921f031e002f615f443873b96f92fb85f5 (diff)
downloadsamba-cd3c6c3cc7b22ab38b9f53276891ad828831a38e.tar.gz
samba-cd3c6c3cc7b22ab38b9f53276891ad828831a38e.tar.bz2
samba-cd3c6c3cc7b22ab38b9f53276891ad828831a38e.zip
* added a 'lstring' type for spoolss
* added some notes on type equivalents in NOTES.txt (This used to be commit a44d952fcb7ebf85d3072b622e5656dcf25cfbb0)
Diffstat (limited to 'source4/build/pidl/header.pm')
-rw-r--r--source4/build/pidl/header.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/build/pidl/header.pm b/source4/build/pidl/header.pm
index 0822ca0e06..dda7e10425 100644
--- a/source4/build/pidl/header.pm
+++ b/source4/build/pidl/header.pm
@@ -127,6 +127,8 @@ sub HeaderType($$$)
$res .= "const char";
} elsif ($data =~ "nstring") {
$res .= "const char *";
+ } elsif ($data =~ "lstring") {
+ $res .= "const char *";
} elsif (util::is_scalar_type($data)) {
$res .= "$data";
} elsif (util::has_property($e, "switch_is")) {