summaryrefslogtreecommitdiff
path: root/source4/script/mkproto.pl
diff options
context:
space:
mode:
Diffstat (limited to 'source4/script/mkproto.pl')
-rwxr-xr-xsource4/script/mkproto.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/script/mkproto.pl b/source4/script/mkproto.pl
index 1b2a9d355a..2332cb06ab 100755
--- a/source4/script/mkproto.pl
+++ b/source4/script/mkproto.pl
@@ -120,6 +120,7 @@ sub process_file($$$)
while (my $line = <FH>) {
my $target = $private_file;
+ my $is_public = 0;
# these are ordered for maximum speed
next if ($line =~ /^\s/);
@@ -128,11 +129,12 @@ sub process_file($$$)
next if ($line =~ /^\/|[;]/);
- if ($line =~ s/^_PUBLIC_[\t ]//) {
+ if ($line =~ s/^_PUBLIC_[\t ]/extern /) {
$target = $public_file;
+ $is_public = 1;
}
- next unless ( $line =~ /
+ next unless ( $is_public || $line =~ /
^void|^BOOL|^int|^struct|^char|^const|^\w+_[tT]\s|^uint|^unsigned|^long|
^NTSTATUS|^ADS_STATUS|^enum\s.*\(|^DATA_BLOB|^WERROR|^XFILE|^FILE|^DIR|
^double|^TDB_CONTEXT|^TDB_DATA|^TALLOC_CTX|^NTTIME|^FN_|^init_module|